We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7fc0b05 + 3f83654 commit e8a7c42Copy full SHA for e8a7c42
2 files changed
.gitignore
@@ -1 +1,2 @@
1
node_modules/
2
+dist/
package.json
@@ -24,7 +24,8 @@
24
"lint:format": "biome check --fix",
25
"lint:report": "biome lint --diagnostic-level=error --reporter=junit > lint-results.xml",
26
"lint:staged": "biome check --diagnostic-level=error --staged --no-errors-on-unmatched",
27
- "build": "exit 0",
+ "prebuild": "rm -rf dist && mkdir -p dist",
28
+ "build": "cp src/* dist/.",
29
"test": "exit 0"
30
},
31
"main": "./src/index.d.ts",
0 commit comments