Skip to content

Commit

Permalink
pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
pyramation committed Apr 12, 2024
1 parent 8c21f25 commit 353040b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions boilerplates/lerna-module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
},
"scripts": {
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
"prepublishOnly": "npm run copy",
"clean": "del dist/**",
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json",
"prepare": "npm run build",
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
"test": "jest",
"test:watch": "jest --watch"
},
Expand Down
4 changes: 2 additions & 2 deletions boilerplates/lerna-tsx-module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
},
"scripts": {
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
"prepublishOnly": "npm run copy",
"clean": "del dist/**",
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json",
"prepare": "npm run build",
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
"test": "jest",
"test:watch": "jest --watch"
},
Expand Down
4 changes: 2 additions & 2 deletions boilerplates/npm-boilerplate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
},
"scripts": {
"copy": "copyfiles -f LICENSE README.md package.json dist",
"prepublishOnly": "npm run copy",
"clean": "del dist/**",
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json",
"prepare": "npm run build",
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
"test": "jest",
"test:watch": "jest --watch"
},
Expand Down

0 comments on commit 353040b

Please sign in to comment.