Skip to content

Commit 7d00b2a

Browse files
committed
win
1 parent c97f594 commit 7d00b2a

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
2727
"clean": "rimraf dist/**",
2828
"prepare": "npm run build",
29-
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
30-
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
29+
"build": "npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
30+
"build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
3131
"dev": "ts-node src/index",
3232
"lint": "eslint . --fix",
3333
"test": "jest",

packages/deparser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
2424
"clean": "rimraf dist/**",
2525
"prepare": "npm run build",
26-
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
27-
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
26+
"build": "npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
27+
"build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
2828
"kitchen-sink": "npm run fixtures && npm run fixtures:kitchen-sink",
2929
"fixtures:kitchen-sink": "ts-node scripts/make-kitchen-sink.ts",
3030
"fixtures:ast": "ts-node scripts/make-fixtures-ast.ts",

packages/enums/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
2424
"clean": "rimraf dist/**",
2525
"prepare": "npm run build",
26-
"build": "npm run build:proto && npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
27-
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
26+
"build": "npm run build:proto && npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
27+
"build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
2828
"build:proto": "ts-node scripts/pg-proto-parser",
2929
"lint": "eslint . --fix",
3030
"test": "jest",

packages/parser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
2727
"clean": "rimraf dist/**",
2828
"prepare": "npm run build",
29-
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
30-
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
29+
"build": "npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
30+
"build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
3131
"lint": "eslint . --fix",
3232
"test": "jest",
3333
"test:watch": "jest --watch"

packages/proto-parser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
2323
"clean": "rimraf dist/**",
2424
"prepare": "npm run build",
25-
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
26-
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
25+
"build": "npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
26+
"build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
2727
"lint": "eslint . --fix",
2828
"test": "jest",
2929
"test:watch": "jest --watch",

packages/transform/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
2424
"clean": "rimraf dist/**",
2525
"prepare": "npm run build",
26-
"build": "npm run build:proto && npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
27-
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
26+
"build": "npm run build:proto && npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
27+
"build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
2828
"build:proto": "ts-node scripts/pg-proto-parser",
2929
"lint": "eslint . --fix",
3030
"test": "jest",

packages/types/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
2424
"clean": "rimraf dist/**",
2525
"prepare": "npm run build",
26-
"build": "npm run build:proto && npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
27-
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
26+
"build": "npm run build:proto && npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
27+
"build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
2828
"build:proto": "ts-node scripts/pg-proto-parser",
2929
"lint": "eslint . --fix",
3030
"test": "jest",

packages/utils/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
2424
"clean": "rimraf dist/**",
2525
"prepare": "npm run build",
26-
"build": "npm run build:proto && npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
27-
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
26+
"build": "npm run build:proto && npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
27+
"build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
2828
"build:proto": "ts-node scripts/pg-proto-parser",
2929
"lint": "eslint . --fix",
3030
"test": "jest",

0 commit comments

Comments
 (0)