Skip to content

Commit

Permalink
fixed create prepublish
Browse files Browse the repository at this point in the history
  • Loading branch information
nikoloza committed Jan 4, 2025
1 parent 87a8942 commit a12611b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
"node-fetch": "^3.1.0",
"v8-compile-cache": "^2.3.0"
},
"gitHead": "597a7ea98e0521447777326702a2796351e73605"
"gitHead": "87a89420d23573f16877a2a1c20e6ddaf204606b"
}
16 changes: 8 additions & 8 deletions packages/create/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "@symbo.ls/create",
"version": "2.11.510",
"license": "MIT",
"gitHead": "597a7ea98e0521447777326702a2796351e73605",
"gitHead": "87a89420d23573f16877a2a1c20e6ddaf204606b",
"type": "module",
"module": "index.js",
"main": "index.js",
"module": "src/index.js",
"main": "src/index.js",
"unpkg": "dist/iife/index.js",
"jsdelivr": "dist/iife/index.js",
"exports": {
Expand All @@ -15,18 +15,18 @@
"require": "./dist/cjs/index.js"
}
},
"source": "index.js",
"source": "src/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"copy:package:cjs": "cp ../../build/package-cjs.json dist/cjs/package.json",
"build:esm": "npx esbuild *.js --target=es2017 --format=esm --outdir=dist/esm",
"build:cjs": "npx esbuild *.js --target=node16 --format=cjs --outdir=dist/cjs",
"build:iife": "npx esbuild *.js --target=node16 --format=iife --outdir=dist/iife",
"build:esm": "npx esbuild src/*.js --target=es2017 --format=esm --outdir=dist/esm",
"build:cjs": "npx esbuild src/*.js --target=node16 --format=cjs --outdir=dist/cjs",
"build:iife": "npx esbuild src/*.js --target=node16 --format=iife --outdir=dist/iife",
"build": "rimraf -I dist; npm run build:cjs; npm run build:esm",
"prepublish": "rimraf -I dist && npm run build && npm run copy:package:cjs"
"prepublish": "npm run build; npm run copy:package:cjs"
},
"dependencies": {
"@domql/emotion": "^2.5.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/fetch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@symbo.ls/fetch",
"version": "2.11.510",
"license": "MIT",
"gitHead": "597a7ea98e0521447777326702a2796351e73605",
"gitHead": "87a89420d23573f16877a2a1c20e6ddaf204606b",
"type": "module",
"module": "index.js",
"main": "index.js",
Expand All @@ -26,7 +26,7 @@
"build:cjs": "npx esbuild *.js --target=node16 --format=cjs --outdir=dist/cjs",
"build:iife": "npx esbuild *.js --target=node16 --format=iife --outdir=dist/iife",
"build": "rimraf -I dist; npm run build:cjs; npm run build:esm",
"prepublish": "rimraf -I dist && npm run build && npm run copy:package:cjs"
"prepublish": "npm run build; npm run copy:package:cjs"
},
"dependencies": {
"@domql/globals": "latest",
Expand Down
2 changes: 1 addition & 1 deletion packages/smbls/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "2.11.510",
"license": "MIT",
"repository": "https://github.com/symbo-ls/smbls",
"gitHead": "597a7ea98e0521447777326702a2796351e73605",
"gitHead": "87a89420d23573f16877a2a1c20e6ddaf204606b",
"source": "index.js",
"main": "index.js",
"module": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/socket/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"socket.io": "^4.5.2",
"socket.io-client": "^4.5.2"
},
"gitHead": "597a7ea98e0521447777326702a2796351e73605"
"gitHead": "87a89420d23573f16877a2a1c20e6ddaf204606b"
}
2 changes: 1 addition & 1 deletion packages/sync/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "2.11.510",
"main": "index.js",
"module": "index.js",
"gitHead": "597a7ea98e0521447777326702a2796351e73605",
"gitHead": "87a89420d23573f16877a2a1c20e6ddaf204606b",
"files": [
"*.js",
"dist"
Expand Down

0 comments on commit a12611b

Please sign in to comment.