Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/setup-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
shell: bash

# We only store yarn cache on main to save cache space
Expand All @@ -37,5 +37,5 @@ runs:
restore-keys: yarn-${{ runner.os }}

- name: Yarn install
run: yarn install --frozen-lockfile
run: yarn install --immutable
shell: bash
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ debug-symbols/
/databases

mocha-cpu-profiles/
/.yarn/install-state.gz
942 changes: 942 additions & 0 deletions .yarn/releases/yarn-4.10.3.cjs

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
nodeLinker: node-modules

npmRegistryServer: 'https://registry.npmjs.org/'

yarnPath: .yarn/releases/yarn-4.10.3.cjs
8 changes: 4 additions & 4 deletions benchmarks/three-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"start:v3:plugins": "env ATLASPACK_BENCH_MODE=V3 ATLASPACK_BENCH_PLUGINS=10 node ./scripts/build.mjs"
},
"dependencies": {
"@atlaspack/config-default": "*",
"@atlaspack/core": "*",
"@atlaspack/plugin": "*",
"@atlaspack/cli": "*",
"@atlaspack/cli": "workspace:*",
"@atlaspack/config-default": "workspace:*",
"@atlaspack/core": "workspace:*",
"@atlaspack/plugin": "workspace:*",
"@oclif/table": "0.3.3",
"@swc/helpers": "*",
"chalk": "*"
Expand Down
16 changes: 8 additions & 8 deletions crates/lmdb-js-lite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
},
"license": "Apache-2.0",
"devDependencies": {
"@atlaspack/cache": "*",
"@atlaspack/core": "*",
"@atlaspack/fs": "*",
"@atlaspack/types": "*",
"@atlaspack/cache": "workspace:*",
"@atlaspack/core": "workspace:*",
"@atlaspack/fs": "workspace:*",
"@atlaspack/types": "workspace:*",
"@napi-rs/cli": "^2.18.4",
"@types/node": ">= 18",
"bench-node": "^0.0.1-beta.0",
Expand All @@ -48,10 +48,10 @@
"version": "napi version"
},
"peerDependencies": {
"@atlaspack/cache": "*",
"@atlaspack/core": "*",
"@atlaspack/fs": "*",
"@atlaspack/types": "*"
"@atlaspack/cache": "workspace:*",
"@atlaspack/core": "workspace:*",
"@atlaspack/fs": "workspace:*",
"@atlaspack/types": "workspace:*"
},
"stableVersion": "0.0.0",
"type": "commonjs"
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@
"@khanacademy/flow-to-ts": "^0.5.2",
"@napi-rs/cli": "^2.18.3",
"@sentry/cli": "^2.45.0",
"@types/async": "^3.2.25",
"@types/mocha": "^10.0.10",
"@types/node": ">= 18",
"@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"buffer": "mischnic/buffer#b8a4fa94",
"cross-env": "^7.0.0",
"eslint": "^8.57.0",
"flow-bin": "0.184.0",
Expand All @@ -91,6 +91,7 @@
"lint-staged": "^10.2.11",
"mocha": "^8.3.0",
"nyc": "^17.1.0",
"playwright": "1.50.0",
"prettier": "^3.0.0",
"punycode": "^2.3.1",
"rfdc": "^1.4.1",
Expand All @@ -113,10 +114,10 @@
"*.{json,md}": "prettier --write",
"*.rs": "rustfmt"
},
"packageManager": "yarn@1.22.19",
"packageManager": "yarn@4.10.3",
"browser": {
"react-dom": "preact/compat",
"react": "preact/compat",
"react-dom": "preact/compat",
"scheduler": false
},
"dependencies": {
Expand Down
4 changes: 1 addition & 3 deletions packages/apvm/apvm-linux-amd64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
"x86_64-unknown-linux-gnu"
]
},
"bin": {
"apvm-linux-amd64": "apvm-linux-amd64"
},
"bin": "apvm-linux-amd64",
"publishConfig": {
"access": "public"
},
Expand Down
4 changes: 1 addition & 3 deletions packages/apvm/apvm-linux-arm64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
"aarch64-unknown-linux-gnu"
]
},
"bin": {
"apvm-linux-arm64": "apvm-linux-arm64"
},
"bin": "apvm-linux-arm64",
"publishConfig": {
"access": "public"
},
Expand Down
4 changes: 1 addition & 3 deletions packages/apvm/apvm-macos-arm64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
"aarch64-apple-darwin"
]
},
"bin": {
"apvm-macos-arm64": "apvm-macos-arm64"
},
"bin": "apvm-macos-arm64",
"publishConfig": {
"access": "public"
},
Expand Down
12 changes: 5 additions & 7 deletions packages/apvm/apvm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
"version": "0.0.9",
"license": "(MIT OR Apache-2.0)",
"type": "commonjs",
"bin": {
"apvm": "apvm.mjs"
},
"bin": "apvm.mjs",
"publishConfig": {
"access": "public"
},
Expand All @@ -15,9 +13,9 @@
"url": "https://github.com/atlassian-labs/atlaspack.git"
},
"optionalDependencies": {
"@atlaspack/apvm-linux-amd64": "0.0.9",
"@atlaspack/apvm-linux-arm64": "0.0.9",
"@atlaspack/apvm-macos-amd64": "0.0.9",
"@atlaspack/apvm-macos-arm64": "0.0.9"
"@atlaspack/apvm-linux-amd64": "workspace:*",
"@atlaspack/apvm-linux-arm64": "workspace:*",
"@atlaspack/apvm-macos-amd64": "workspace:*",
"@atlaspack/apvm-macos-arm64": "workspace:*"
}
}
20 changes: 10 additions & 10 deletions packages/bundlers/bundler-experimental/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@
"node": ">= 16.0.0"
},
"dependencies": {
"@atlaspack/core": "2.26.0",
"@atlaspack/diagnostic": "2.14.4",
"@atlaspack/feature-flags": "2.25.5",
"@atlaspack/graph": "3.5.24",
"@atlaspack/logger": "2.14.27",
"@atlaspack/plugin": "2.14.35",
"@atlaspack/rust": "3.8.3",
"@atlaspack/types": "2.15.25",
"@atlaspack/utils": "3.0.3",
"@atlaspack/core": "workspace:*",
"@atlaspack/diagnostic": "workspace:*",
"@atlaspack/feature-flags": "workspace:*",
"@atlaspack/graph": "workspace:*",
"@atlaspack/logger": "workspace:*",
"@atlaspack/plugin": "workspace:*",
"@atlaspack/rust": "workspace:*",
"@atlaspack/types": "workspace:*",
"@atlaspack/utils": "workspace:*",
"nullthrows": "^1.1.1"
},
"devDependencies": {
"@atlaspack/fs": "2.15.30"
"@atlaspack/fs": "workspace:*"
},
"scripts": {
"build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
Expand Down
16 changes: 8 additions & 8 deletions packages/bundlers/default/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
"node": ">= 16.0.0"
},
"dependencies": {
"@atlaspack/types-internal": "2.20.5",
"@atlaspack/diagnostic": "2.14.4",
"@atlaspack/feature-flags": "2.25.5",
"@atlaspack/graph": "3.5.24",
"@atlaspack/plugin": "2.14.35",
"@atlaspack/rust": "3.8.3",
"@atlaspack/utils": "3.0.3",
"@atlaspack/diagnostic": "workspace:*",
"@atlaspack/feature-flags": "workspace:*",
"@atlaspack/graph": "workspace:*",
"@atlaspack/plugin": "workspace:*",
"@atlaspack/rust": "workspace:*",
"@atlaspack/types-internal": "workspace:*",
"@atlaspack/utils": "workspace:*",
"@types/sorted-array-functions": "^1.0.0",
"nullthrows": "^1.1.1",
"many-keys-map": "^1.0.3",
"nullthrows": "^1.1.1",
"sorted-array-functions": "^1.0.0"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/bundlers/library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"node": ">= 16.0.0"
},
"dependencies": {
"@atlaspack/plugin": "2.14.35",
"@atlaspack/plugin": "workspace:*",
"nullthrows": "^1.1.1"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/compressors/brotli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"node": ">= 16.0.0"
},
"dependencies": {
"@atlaspack/plugin": "2.14.35"
"@atlaspack/plugin": "workspace:*"
},
"scripts": {
"build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
Expand Down
2 changes: 1 addition & 1 deletion packages/compressors/gzip/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"node": ">= 16.0.0"
},
"dependencies": {
"@atlaspack/plugin": "2.14.35"
"@atlaspack/plugin": "workspace:*"
},
"scripts": {
"build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
Expand Down
2 changes: 1 addition & 1 deletion packages/compressors/raw/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"node": ">= 16.0.0"
},
"dependencies": {
"@atlaspack/plugin": "2.14.35"
"@atlaspack/plugin": "workspace:*"
},
"scripts": {
"build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
Expand Down
62 changes: 31 additions & 31 deletions packages/configs/default/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,38 +16,38 @@
"build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
},
"dependencies": {
"@atlaspack/bundler-default": "3.4.7",
"@atlaspack/compressor-raw": "2.13.37",
"@atlaspack/namer-default": "2.14.35",
"@atlaspack/optimizer-css": "2.14.35",
"@atlaspack/optimizer-htmlnano": "2.14.35",
"@atlaspack/optimizer-image": "7.0.0",
"@atlaspack/optimizer-svgo": "2.14.35",
"@atlaspack/optimizer-swc": "2.14.35",
"@atlaspack/packager-css": "2.14.35",
"@atlaspack/packager-html": "2.15.17",
"@atlaspack/packager-js": "2.23.5",
"@atlaspack/packager-raw": "2.14.35",
"@atlaspack/packager-svg": "2.14.35",
"@atlaspack/packager-wasm": "2.14.35",
"@atlaspack/reporter-dev-server": "2.14.35",
"@atlaspack/resolver-default": "2.14.35",
"@atlaspack/runtime-browser-hmr": "2.14.35",
"@atlaspack/runtime-js": "2.19.2",
"@atlaspack/runtime-react-refresh": "2.15.11",
"@atlaspack/runtime-service-worker": "2.14.35",
"@atlaspack/transformer-css": "2.14.35",
"@atlaspack/transformer-html": "2.15.12",
"@atlaspack/transformer-image": "7.0.0",
"@atlaspack/transformer-js": "7.0.0",
"@atlaspack/transformer-json": "2.14.35",
"@atlaspack/transformer-postcss": "2.14.35",
"@atlaspack/transformer-posthtml": "2.14.35",
"@atlaspack/transformer-raw": "2.14.35",
"@atlaspack/transformer-react-refresh-wrap": "2.15.11",
"@atlaspack/transformer-svg": "2.14.35"
"@atlaspack/bundler-default": "workspace:*",
"@atlaspack/compressor-raw": "workspace:*",
"@atlaspack/namer-default": "workspace:*",
"@atlaspack/optimizer-css": "workspace:*",
"@atlaspack/optimizer-htmlnano": "workspace:*",
"@atlaspack/optimizer-image": "workspace:*",
"@atlaspack/optimizer-svgo": "workspace:*",
"@atlaspack/optimizer-swc": "workspace:*",
"@atlaspack/packager-css": "workspace:*",
"@atlaspack/packager-html": "workspace:*",
"@atlaspack/packager-js": "workspace:*",
"@atlaspack/packager-raw": "workspace:*",
"@atlaspack/packager-svg": "workspace:*",
"@atlaspack/packager-wasm": "workspace:*",
"@atlaspack/reporter-dev-server": "workspace:*",
"@atlaspack/resolver-default": "workspace:*",
"@atlaspack/runtime-browser-hmr": "workspace:*",
"@atlaspack/runtime-js": "workspace:*",
"@atlaspack/runtime-react-refresh": "workspace:*",
"@atlaspack/runtime-service-worker": "workspace:*",
"@atlaspack/transformer-css": "workspace:*",
"@atlaspack/transformer-html": "workspace:*",
"@atlaspack/transformer-image": "workspace:*",
"@atlaspack/transformer-js": "workspace:*",
"@atlaspack/transformer-json": "workspace:*",
"@atlaspack/transformer-postcss": "workspace:*",
"@atlaspack/transformer-posthtml": "workspace:*",
"@atlaspack/transformer-raw": "workspace:*",
"@atlaspack/transformer-react-refresh-wrap": "workspace:*",
"@atlaspack/transformer-svg": "workspace:*"
},
"peerDependencies": {
"@atlaspack/core": "2.26.0"
"@atlaspack/core": "workspace:*"
}
}
14 changes: 7 additions & 7 deletions packages/configs/webextension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
},
"main": "index.json",
"dependencies": {
"@atlaspack/config-default": "7.0.0",
"@atlaspack/packager-webextension": "2.14.35",
"@atlaspack/runtime-webextension": "2.14.35",
"@atlaspack/transformer-raw": "2.14.35",
"@atlaspack/transformer-webextension": "2.14.35",
"@atlaspack/types": "2.15.25"
"@atlaspack/config-default": "workspace:*",
"@atlaspack/packager-webextension": "workspace:*",
"@atlaspack/runtime-webextension": "workspace:*",
"@atlaspack/transformer-raw": "workspace:*",
"@atlaspack/transformer-webextension": "workspace:*",
"@atlaspack/types": "workspace:*"
},
"peerDependencies": {
"@atlaspack/core": "2.26.0"
"@atlaspack/core": "workspace:*"
},
"scripts": {
"build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
Expand Down
Loading
Loading