Skip to content

Commit

Permalink
fix output path
Browse files Browse the repository at this point in the history
  • Loading branch information
napalmpapalam committed Feb 27, 2024
1 parent 97d45e2 commit 6ecebbe
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions packages/fetcher/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"scripts": {
"build": "yarn clean && yarn build:types && yarn build:cjs && yarn build:esm && yarn build:tsc-alias",
"build:types": "tsc -p tsconfig.build.json --outDir ./dist/types --declaration --emitDeclarationOnly",
"build:cjs": "npx swc src -d ./dist/cjs --config-file ../../.swcrc -C module.type=commonjs",
"build:esm": "npx swc src -d ./dist/esm --out-file-extension mjs --config-file ../../.swcrc -C module.type=es6 isModule=true",
"build:cjs": "npx swc src -d ./dist/cjs --strip-leading-path --config-file ../../.swcrc -C module.type=commonjs",
"build:esm": "npx swc src -d ./dist/esm --strip-leading-path --out-file-extension mjs --config-file ../../.swcrc -C module.type=es6 isModule=true",
"build:tsc-alias": "tsc-alias -p tsconfig.json --outDir ./dist/types",
"clean": "rm -rf dist",
"test": "yarn jest --verbose",
Expand Down
4 changes: 2 additions & 2 deletions packages/jac/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"scripts": {
"build": "yarn clean && yarn build:types && yarn build:cjs && yarn build:esm && yarn build:tsc-alias",
"build:types": "tsc -p tsconfig.build.json --outDir ./dist/types --declaration --emitDeclarationOnly",
"build:cjs": "npx swc src -d ./dist/cjs --config-file ../../.swcrc -C module.type=commonjs",
"build:esm": "npx swc src -d ./dist/esm --out-file-extension mjs --config-file ../../.swcrc -C module.type=es6 isModule=true",
"build:cjs": "npx swc src -d ./dist/cjs --strip-leading-path --config-file ../../.swcrc -C module.type=commonjs",
"build:esm": "npx swc src -d ./dist/esm --strip-leading-path --out-file-extension mjs --config-file ../../.swcrc -C module.type=es6 isModule=true",
"build:tsc-alias": "tsc-alias -p tsconfig.json --outDir ./dist/types",
"clean": "rm -rf dist",
"test": "yarn jest --verbose",
Expand Down
4 changes: 2 additions & 2 deletions packages/reactivity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"scripts": {
"build": "yarn clean && yarn build:types && yarn build:cjs && yarn build:esm && yarn build:tsc-alias",
"build:types": "tsc -p tsconfig.build.json --outDir ./dist/types --declaration --emitDeclarationOnly",
"build:cjs": "npx swc src -d ./dist/cjs --config-file ../../.swcrc -C module.type=commonjs",
"build:esm": "npx swc src -d ./dist/esm --out-file-extension mjs --config-file ../../.swcrc -C module.type=es6 isModule=true",
"build:cjs": "npx swc src -d ./dist/cjs --strip-leading-path --config-file ../../.swcrc -C module.type=commonjs",
"build:esm": "npx swc src -d ./dist/esm --strip-leading-path --out-file-extension mjs --config-file ../../.swcrc -C module.type=es6 isModule=true",
"build:tsc-alias": "tsc-alias -p tsconfig.json --outDir ./dist/types",
"clean": "rm -rf dist",
"test": "yarn jest --verbose",
Expand Down
4 changes: 2 additions & 2 deletions packages/tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"scripts": {
"build": "yarn clean && yarn build:types && yarn build:cjs && yarn build:esm && yarn build:tsc-alias",
"build:types": "tsc -p tsconfig.build.json --outDir ./dist/types --declaration --emitDeclarationOnly",
"build:cjs": "npx swc src -d ./dist/cjs --config-file ../../.swcrc -C module.type=commonjs",
"build:esm": "npx swc src -d ./dist/esm --out-file-extension mjs --config-file ../../.swcrc -C module.type=es6 isModule=true",
"build:cjs": "npx swc src -d ./dist/cjs --strip-leading-path --config-file ../../.swcrc -C module.type=commonjs",
"build:esm": "npx swc src -d ./dist/esm --strip-leading-path --out-file-extension mjs --config-file ../../.swcrc -C module.type=es6 isModule=true",
"build:tsc-alias": "tsc-alias -p tsconfig.json --outDir ./dist/types",
"clean": "rm -rf dist",
"test": "yarn jest --verbose",
Expand Down
4 changes: 2 additions & 2 deletions packages/w3p/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"scripts": {
"build": "yarn clean && yarn build:types && yarn build:cjs && yarn build:esm && yarn build:tsc-alias",
"build:types": "tsc -p tsconfig.build.json --outDir ./dist/types --declaration --emitDeclarationOnly",
"build:cjs": "npx swc src -d ./dist/cjs --config-file ../../.swcrc -C module.type=commonjs",
"build:esm": "npx swc src -d ./dist/esm --out-file-extension mjs --config-file ../../.swcrc -C module.type=es6 isModule=true",
"build:cjs": "npx swc src -d ./dist/cjs --strip-leading-path --config-file ../../.swcrc -C module.type=commonjs",
"build:esm": "npx swc src -d ./dist/esm --strip-leading-path --out-file-extension mjs --config-file ../../.swcrc -C module.type=es6 isModule=true",
"build:tsc-alias": "tsc-alias -p tsconfig.json --outDir ./dist/types",
"clean": "rm -rf dist",
"test": "yarn jest --verbose",
Expand Down

0 comments on commit 6ecebbe

Please sign in to comment.