@lansisdev/gh-createpr 1.3.2 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -4
package/package.json
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansisdev/gh-createpr",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"bin": {
|
|
6
|
-
"gh-createpr": "
|
|
6
|
+
"gh-createpr": "dist/index.js"
|
|
7
7
|
},
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "rm -rf dist && tsc && npm run bundle",
|
|
10
10
|
"bundle": "esbuild src/index.ts --bundle --platform=node --target=node18 --outfile=dist/index.js --format=esm --packages=external --allow-overwrite",
|
|
11
11
|
"start": "node dist/index.js",
|
|
12
12
|
"dev": "ts-node --esm src/index.ts",
|
|
13
|
-
"
|
|
14
|
-
"build:bin": "rm -rf dist/bin && mkdir -p dist/bin && bun build src/index.ts --compile --target=bun-darwin-x64 --outfile dist/bin/gh-createpr-darwin-amd64 && bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile dist/bin/gh-createpr-darwin-arm64",
|
|
13
|
+
"prepublishOnly": "npm run build && chmod +x dist/index.js",
|
|
15
14
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
16
15
|
},
|
|
17
16
|
"keywords": [],
|