-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: revert JSON changes with new options
- Loading branch information
Showing
115 changed files
with
1,313 additions
and
1,320 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/config@1.7.0/schema.json", | ||
"changelog": ["@changesets/changelog-github", { "repo": "withastro/astro" }], | ||
"commit": false, | ||
"linked": [], | ||
"access": "public", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "patch", | ||
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": { | ||
"onlyUpdatePeerDependentsWhenOutOfRange": true | ||
} | ||
"$schema": "https://unpkg.com/@changesets/config@1.7.0/schema.json", | ||
"changelog": ["@changesets/changelog-github", { "repo": "withastro/astro" }], | ||
"commit": false, | ||
"linked": [], | ||
"access": "public", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "patch", | ||
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": { | ||
"onlyUpdatePeerDependentsWhenOutOfRange": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
{ | ||
"name": "Basics", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
"name": "Basics", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
|
||
"workspaceFolder": "/workspaces/astro/examples/basics", | ||
"workspaceFolder": "/workspaces/astro/examples/basics", | ||
|
||
"portsAttributes": { | ||
"4321": { | ||
"label": "Application", | ||
"onAutoForward": "openPreview" | ||
} | ||
}, | ||
"portsAttributes": { | ||
"4321": { | ||
"label": "Application", | ||
"onAutoForward": "openPreview" | ||
} | ||
}, | ||
|
||
"forwardPorts": [4321], | ||
"forwardPorts": [4321], | ||
|
||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
|
||
"waitFor": "postCreateCommand", | ||
"waitFor": "postCreateCommand", | ||
|
||
"postAttachCommand": { | ||
"Server": "pnpm start --host" | ||
}, | ||
"postAttachCommand": { | ||
"Server": "pnpm start --host" | ||
}, | ||
|
||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["src/pages/index.astro"] | ||
}, | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["src/pages/index.astro"] | ||
}, | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
{ | ||
"name": "Blog", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
"name": "Blog", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
|
||
"workspaceFolder": "/workspaces/astro/examples/blog", | ||
"workspaceFolder": "/workspaces/astro/examples/blog", | ||
|
||
"portsAttributes": { | ||
"4321": { | ||
"label": "Application", | ||
"onAutoForward": "openPreview" | ||
} | ||
}, | ||
"portsAttributes": { | ||
"4321": { | ||
"label": "Application", | ||
"onAutoForward": "openPreview" | ||
} | ||
}, | ||
|
||
"forwardPorts": [4321], | ||
"forwardPorts": [4321], | ||
|
||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
|
||
"waitFor": "postCreateCommand", | ||
"waitFor": "postCreateCommand", | ||
|
||
"postAttachCommand": { | ||
"Server": "pnpm start --host" | ||
}, | ||
"postAttachCommand": { | ||
"Server": "pnpm start --host" | ||
}, | ||
|
||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["src/pages/index.astro"] | ||
}, | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["src/pages/index.astro"] | ||
}, | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
{ | ||
"name": "Component Template", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
"name": "Component Template", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
|
||
"workspaceFolder": "/workspaces/astro/examples/component", | ||
"workspaceFolder": "/workspaces/astro/examples/component", | ||
|
||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
|
||
"waitFor": "postCreateCommand", | ||
"waitFor": "postCreateCommand", | ||
|
||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["src/MyComponent.astro"] | ||
}, | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["src/MyComponent.astro"] | ||
}, | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
{ | ||
"name": "Deno", | ||
"build": { | ||
"dockerfile": "../examples.deno.Dockerfile" | ||
}, | ||
"name": "Deno", | ||
"build": { | ||
"dockerfile": "../examples.deno.Dockerfile" | ||
}, | ||
|
||
"workspaceFolder": "/workspaces/astro/examples/deno", | ||
"workspaceFolder": "/workspaces/astro/examples/deno", | ||
|
||
"portsAttributes": { | ||
"4321": { | ||
"label": "Application", | ||
"onAutoForward": "openPreview" | ||
} | ||
}, | ||
"portsAttributes": { | ||
"4321": { | ||
"label": "Application", | ||
"onAutoForward": "openPreview" | ||
} | ||
}, | ||
|
||
"forwardPorts": [4321], | ||
"forwardPorts": [4321], | ||
|
||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
|
||
"waitFor": "postCreateCommand", | ||
"waitFor": "postCreateCommand", | ||
|
||
"postAttachCommand": { | ||
"Server": "pnpm start --host" | ||
}, | ||
"postAttachCommand": { | ||
"Server": "pnpm start --host" | ||
}, | ||
|
||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["src/pages/index.astro"] | ||
}, | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["src/pages/index.astro"] | ||
}, | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
{ | ||
"name": "Contribute to Astro", | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"name": "Contribute to Astro", | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
|
||
"features": { | ||
"ghcr.io/devcontainers/features/desktop-lite:1": {} | ||
}, | ||
"features": { | ||
"ghcr.io/devcontainers/features/desktop-lite:1": {} | ||
}, | ||
|
||
"postCreateCommand": "pnpm install && pnpm run build", | ||
"postCreateCommand": "pnpm install && pnpm run build", | ||
|
||
"waitFor": "postCreateCommand", | ||
"waitFor": "postCreateCommand", | ||
|
||
"postAttachCommand": { | ||
"Astro tests": "pnpm run test" | ||
}, | ||
"postAttachCommand": { | ||
"Astro tests": "pnpm run test" | ||
}, | ||
|
||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["README.md", "CONTRIBUTING.md"] | ||
}, | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["README.md", "CONTRIBUTING.md"] | ||
}, | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
{ | ||
"name": "Docs Site", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
"name": "Docs Site", | ||
"build": { | ||
"dockerfile": "../examples.Dockerfile" | ||
}, | ||
|
||
"workspaceFolder": "/workspaces/astro/examples/docs", | ||
"workspaceFolder": "/workspaces/astro/examples/docs", | ||
|
||
"portsAttributes": { | ||
"4321": { | ||
"label": "Application", | ||
"onAutoForward": "openPreview" | ||
} | ||
}, | ||
"portsAttributes": { | ||
"4321": { | ||
"label": "Application", | ||
"onAutoForward": "openPreview" | ||
} | ||
}, | ||
|
||
"forwardPorts": [4321], | ||
"forwardPorts": [4321], | ||
|
||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", | ||
|
||
"waitFor": "postCreateCommand", | ||
"waitFor": "postCreateCommand", | ||
|
||
"postAttachCommand": { | ||
"Server": "pnpm start --host" | ||
}, | ||
"postAttachCommand": { | ||
"Server": "pnpm start --host" | ||
}, | ||
|
||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["src/pages/index.astro"] | ||
}, | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["src/pages/index.astro"] | ||
}, | ||
"vscode": { | ||
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"] | ||
} | ||
} | ||
} |
Oops, something went wrong.