Skip to content

Commit

Permalink
Fix changeset publish (#6923)
Browse files Browse the repository at this point in the history
  • Loading branch information
bluwy authored Apr 27, 2023
1 parent 06c5273 commit de5a25f
Show file tree
Hide file tree
Showing 29 changed files with 37 additions and 4 deletions.
1 change: 0 additions & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["!(astro|create-astro|@astrojs/*|astro-scripts)"],
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
"onlyUpdatePeerDependentsWhenOutOfRange": true
}
Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
"version": "changeset version && pnpm install --no-frozen-lockfile && pnpm run format",
"preinstall": "npx only-allow pnpm"
},
"workspaces": [
"packages/markdown/*",
"packages/integrations/*",
"packages/*"
],
"engines": {
"node": ">=16.12.0",
"pnpm": ">=8.2.0"
Expand Down
1 change: 1 addition & 0 deletions packages/astro/performance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@test/performance",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"benchmark": "node ./content-benchmark.mjs"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"name": "@test/astro-client-only-pkg",
"main": "index.svelte"
"main": "index.svelte",
"private": true
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/astro-slot-with-client",
"private": true,
"dependencies": {
"astro": "workspace:*",
"@astrojs/preact": "workspace:*",
Expand Down
1 change: 1 addition & 0 deletions packages/astro/test/fixtures/before-hydration/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/before-hydration",
"private": true,
"dependencies": {
"@astrojs/preact": "workspace:*",
"astro": "workspace:*",
Expand Down
1 change: 1 addition & 0 deletions packages/astro/test/fixtures/build-assets/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/build-assets",
"private": true,
"dependencies": {
"@astrojs/preact": "workspace:*",
"astro": "workspace:*",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"name": "@test/astro-font-awesome-package",
"version": "0.0.1"
"version": "0.0.1",
"private": true
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/css-order-dynamic-import",
"private": true,
"dependencies": {
"astro": "workspace:*"
}
Expand Down
1 change: 1 addition & 0 deletions packages/astro/test/fixtures/css-order-import/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/css-order-import",
"private": true,
"dependencies": {
"@astrojs/react": "workspace:*",
"astro": "workspace:*",
Expand Down
1 change: 1 addition & 0 deletions packages/astro/test/fixtures/css-order-layout/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/css-order-layout",
"private": true,
"dependencies": {
"astro": "workspace:*"
}
Expand Down
1 change: 1 addition & 0 deletions packages/astro/test/fixtures/css-order/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/css-order",
"private": true,
"dependencies": {
"astro": "workspace:*"
}
Expand Down
1 change: 1 addition & 0 deletions packages/astro/test/fixtures/dont-delete-me/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/dont-delete-me",
"private": true,
"dependencies": {
"astro": "workspace:*"
}
Expand Down
1 change: 1 addition & 0 deletions packages/astro/test/fixtures/lazy-layout/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/lazy-layout",
"private": true,
"dependencies": {
"astro": "workspace:*"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/multiple-renderers",
"private": true,
"dependencies": {
"astro": "workspace:*",
"@test/astro-renderer-one": "file:./renderers/one",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/astro-renderer-one",
"version": "1.0.0",
"private": true,
"main": "index.mjs"
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/astro-renderer-two",
"version": "1.0.0",
"private": true,
"main": "index.mjs"
}
1 change: 1 addition & 0 deletions packages/astro/test/fixtures/react-and-solid/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/react-and-solid",
"private": true,
"dependencies": {
"@astrojs/react": "workspace:*",
"@astrojs/solid-js": "workspace:*",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/reexport-astro-containing-client-component",
"private": true,
"dependencies": {
"@astrojs/preact": "workspace:",
"astro": "workspace:",
Expand Down
1 change: 1 addition & 0 deletions packages/astro/test/fixtures/set-html/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@test/set-html",
"version": "1.0.0",
"private": true,
"dependencies": {
"astro": "workspace:*"
}
Expand Down
1 change: 1 addition & 0 deletions packages/astro/test/fixtures/static-build-ssr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@test/static-build-ssr",
"version": "0.0.0",
"private": true,
"dependencies": {
"@astrojs/node": "workspace:*",
"@test/static-build-pkg": "workspace:*",
Expand Down
1 change: 1 addition & 0 deletions packages/astro/test/fixtures/static-build/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@test/static-build",
"version": "0.0.0",
"private": true,
"dependencies": {
"@astrojs/preact": "workspace:*",
"@test/static-build-pkg": "workspace:*",
Expand Down
5 changes: 4 additions & 1 deletion packages/create-astro/test/fixtures/not-empty/package.json
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
{"name": "@test/create-astro-not-empty"}
{
"name": "@test/create-astro-not-empty",
"private": true
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/mdx-images",
"private": true,
"dependencies": {
"@astrojs/mdx": "workspace:*",
"astro": "workspace:*",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@test/mdx-infinite-loop",
"type": "module",
"private": true,
"dependencies": {
"@astrojs/mdx": "workspace:*",
"@astrojs/preact": "workspace:*",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/mdx-namespace",
"private": true,
"dependencies": {
"@astrojs/mdx": "workspace:*",
"@astrojs/react": "workspace:*",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/mdx-page",
"private": true,
"dependencies": {
"@astrojs/mdx": "workspace:*",
"astro": "workspace:*",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/mdx-plus-react",
"private": true,
"dependencies": {
"@astrojs/mdx": "workspace:*",
"@astrojs/react": "workspace:*",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@test/mdx-env-variables",
"private": true,
"dependencies": {
"astro": "workspace:*",
"@astrojs/mdx": "workspace:*"
Expand Down

0 comments on commit de5a25f

Please sign in to comment.