Skip to content

Commit

Permalink
[ci] release (#163)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
Fryuni and github-actions[bot] committed Sep 19, 2024
1 parent 8169551 commit bfe262a
Show file tree
Hide file tree
Showing 12 changed files with 81 additions and 99 deletions.
5 changes: 0 additions & 5 deletions .changeset/silly-moles-accept.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-spies-turn.md

This file was deleted.

16 changes: 3 additions & 13 deletions docs/turbo.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,10 @@
{
"$schema": "https://turbo.build/schema.json",
"extends": [
"//"
],
"extends": ["//"],
"tasks": {
"build": {
"inputs": [
"*",
"src/**",
"public/**",
"../packages/*/package.json"
],
"outputs": [
".vercel",
".astro"
]
"inputs": ["*", "src/**", "public/**", "../packages/*/package.json"],
"outputs": [".vercel", ".astro"]
}
}
}
118 changes: 59 additions & 59 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions packages/astro-tests/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @inox-tools/astro-tests

## 0.1.1

### Patch Changes

- 17a49c6: Pick default fixture port at random
- 81db094: Add debug logging

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/astro-tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inox-tools/astro-tests",
"version": "0.1.0",
"version": "0.1.1",
"license": "MIT",
"author": "Luiz Ferraz <luiz@lferraz.com>",
"type": "module",
Expand Down
6 changes: 3 additions & 3 deletions packages/astro-tests/src/astroFixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,9 @@ export async function loadFixture(inlineConfig: InlineConfig): Promise<Fixture>
const onNextChange = () =>
devServer
? new Promise<void>((resolve) =>
// TODO: Implement filter to only resolve on changes to a given file.
devServer.watcher.once('change', () => resolve())
)
// TODO: Implement filter to only resolve on changes to a given file.
devServer.watcher.once('change', () => resolve())
)
: Promise.reject(new Error('No dev server running'));

// Also do it on process exit, just in case.
Expand Down
7 changes: 4 additions & 3 deletions packages/astro-tests/src/testAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,14 @@ export default function (options: Options = {}): AstroIntegration {
import { App } from 'astro/app';
import fs from 'fs';
${env != null
? `
${
env != null
? `
const $$env = ${JSON.stringify(env)};
await import('astro/env/setup')
.then(mod => mod.setGetEnv((key) => $$env[key]))
.catch(() => {});`
: ''
: ''
}
class MyApp extends App {
Expand Down
4 changes: 1 addition & 3 deletions packages/request-state/e2e/fixture/basic/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "../../../../../tsconfig.base.json",
"compilerOptions": {
"lib": [
"dom"
]
"lib": ["dom"]
}
}
2 changes: 1 addition & 1 deletion packages/request-state/e2e/fixture/dev/src/state.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const state = {
source: 'Original',
source: 'Original',
};
4 changes: 1 addition & 3 deletions packages/request-state/e2e/fixture/dev/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "../../../../../tsconfig.base.json",
"compilerOptions": {
"lib": [
"dom"
]
"lib": ["dom"]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "../../../../../tsconfig.base.json",
"compilerOptions": {
"lib": [
"dom"
]
"lib": ["dom"]
}
}

0 comments on commit bfe262a

Please sign in to comment.