We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1eb4ab9 commit 1449750Copy full SHA for 1449750
package.json
@@ -9,7 +9,7 @@
9
"watch": "tsc --watch",
10
"build": "tsc -p tsconfig.json",
11
"dev": "node scripts/dev.js",
12
- "test": "tsc -b spec && node scripts/remap-imports.js && jasmine"
+ "test": "tsc -b src && node scripts/remap-imports.js && tsc -p spec jasmine"
13
},
14
"keywords": [],
15
"author": "",
scripts/remap-imports.ts
@@ -6,6 +6,7 @@ Script to remap imports from '/filename' to './filename.js'.
6
import fs from 'node:fs/promises';
7
import path from 'node:path';
8
+//haha script goes brrrrr
(async function main(){
process.chdir(path.join(__dirname, '..'));
await fs.rm('spec/plugin', { recursive: true, force: true });
0 commit comments