From a2fd86b9c317c54aabb68f445a2c264203c6e58e Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Thu, 14 May 2020 01:38:05 +0200 Subject: [PATCH] update --- .github/workflows/publish.yaml | 2 +- package.json | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index b470310..8e68d90 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -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 diff --git a/package.json b/package.json index 239fabf..4df2c40 100755 --- a/package.json +++ b/package.json @@ -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" },