We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bb8c04 commit 59ff6b1Copy full SHA for 59ff6b1
2 files changed
.npmignore
@@ -1,7 +1,7 @@
1
.DS_Store
2
.yarn
3
-**/tsconfig.*
4
-**/tsup.*
5
src
6
-**/node_modules
7
-**/package.json.backup
+tsconfig.*
+tsup.*
+node_modules
+package.json.backup
package.json
@@ -11,8 +11,9 @@
11
},
12
"type": "module",
13
"scripts": {
14
- "build": "run-s clean build:each",
+ "build": "run-s clean build:prep build:each",
15
"build:ide": "echo 'tsc -b' && tsc -b",
16
+ "build:prep": "lerna exec --stream -- cp ../../.npmignore . && lerna exec --stream -- cp ../../LICENSE .",
17
"build:each": "lerna exec --stream -- yarn build",
18
"clean": "tsx ./scripts/clean.ts",
19
"clean:yarn": "tsx ./scripts/clean-yarn.ts",
0 commit comments