diff options
author | 2022-03-15 17:29:37 -0500 | |
---|---|---|
committer | 2022-03-15 17:29:39 -0500 | |
commit | 8654e841fffae4e1c36985bbead73765b5f9fa16 (patch) | |
tree | 02d06f51eacfc92c9c41c7a559137a81509b6898 | |
parent | 267d20d2075273ce89093cc9653a80d74681baf2 (diff) | |
download | astro-8654e841fffae4e1c36985bbead73765b5f9fa16.tar.gz astro-8654e841fffae4e1c36985bbead73765b5f9fa16.tar.zst astro-8654e841fffae4e1c36985bbead73765b5f9fa16.zip |
chore: fix internal package
Diffstat (limited to '')
-rw-r--r-- | packages/astro/test/fixtures/static build/package.json | 2 | ||||
-rw-r--r-- | packages/astro/test/fixtures/static build/pkg/package.json | 2 | ||||
-rw-r--r-- | pnpm-lock.yaml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/packages/astro/test/fixtures/static build/package.json b/packages/astro/test/fixtures/static build/package.json index 756d0c846..aa5623cdb 100644 --- a/packages/astro/test/fixtures/static build/package.json +++ b/packages/astro/test/fixtures/static build/package.json @@ -2,7 +2,7 @@ "name": "@test/static-build", "version": "0.0.0", "dependencies": { - "@test/static-build-pkg": "link:pkg", + "@test/static-build-pkg": "workspace:*", "astro": "workspace:*" } } diff --git a/packages/astro/test/fixtures/static build/pkg/package.json b/packages/astro/test/fixtures/static build/pkg/package.json index 430c0c5f3..fc2f7bd7a 100644 --- a/packages/astro/test/fixtures/static build/pkg/package.json +++ b/packages/astro/test/fixtures/static build/pkg/package.json @@ -1,7 +1,7 @@ { "name": "@test/static-build-pkg", "main": "./oops.cjs", - "version": "0.0.3", + "version": "0.0.0", "exports": { ".": { "import": "./pkg.mjs", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a7257f816..a30c743c0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -913,7 +913,7 @@ importers: packages/astro/test/fixtures/static build: specifiers: - '@test/static-build-pkg': link:pkg + '@test/static-build-pkg': workspace:* astro: workspace:* dependencies: '@test/static-build-pkg': link:pkg |