This commit is contained in:
Joseph Garrone 2020-05-14 01:38:05 +02:00
parent 1c50641c3f
commit a2fd86b9c3
2 changed files with 3 additions and 5 deletions

View file

@ -47,7 +47,7 @@ jobs:
- uses: actions/setup-node@v1
- run: npm install
- run: npm run enable_short_import_path:npm
- run: npm run enable_short_import_path
env:
DRY_RUN: "0"
- name: (DEBUG) Show how the files have been moved to enable short import

View file

@ -10,10 +10,8 @@
"types": "./dist/index.d.ts",
"scripts": {
"tsc": "npx tsc",
"build": "npm run tsc && npm run denoify",
"test:node": "node ./dist/test",
"test:deno": "deno ./deno_dist/test/deno_index.ts",
"test": "npm run test:node && npm run test:deno",
"build": "npm run tsc",
"test": "node ./dist/test",
"enable_short_import_path": "npm run build && npx denoify_enable_short_npm_import_path",
"clean": "rm -rf node_modules dist"
},