-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea083af
commit 66a710f
Showing
7 changed files
with
232 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,9 +20,9 @@ | |
"build": "node ../../scripts/build.mjs --build=\"all\"", | ||
"build:cjs": "node ../../scripts/build.mjs --build='cjs'", | ||
"build:mjs": "node ../../scripts/build.mjs --build='mjs'", | ||
"unit": "node --require ts-node/register ../../scripts/test.mjs", | ||
"unit": "cross-env \"NODE_OPTIONS=--require ts-node/register\" unit", | ||
"test": "npm run lint && npm run unit", | ||
"coverage": "c8 node --require ts-node/register ./test/run.ts", | ||
"coverage": "cross-env \"NODE_OPTIONS=--require ts-node/register\" c8 unit", | ||
"prepublishOnly": "npm run build", | ||
"postpublish": "npm run clean" | ||
}, | ||
|
@@ -37,9 +37,12 @@ | |
"author": "KaKa <[email protected]>", | ||
"license": "GPL-3.0", | ||
"devDependencies": { | ||
"@kakang/unit": "workspace:^", | ||
"@types/node": "^20.12.7", | ||
"@typescript-eslint/eslint-plugin": "7.6.0", | ||
"@typescript-eslint/parser": "7.6.0", | ||
"c8": "^9.1.0", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.57.0", | ||
"eslint-config-standard-with-typescript": "^43.0.1", | ||
"eslint-plugin-import": "^2.29.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,9 +20,9 @@ | |
"build": "node ../../scripts/build.mjs --build=\"all\"", | ||
"build:cjs": "node ../../scripts/build.mjs --build='cjs'", | ||
"build:mjs": "node ../../scripts/build.mjs --build='mjs'", | ||
"unit": "node --require ts-node/register ../../scripts/test.mjs", | ||
"unit": "cross-env \"NODE_OPTIONS=--require ts-node/register\" unit", | ||
"test": "npm run lint && npm run unit", | ||
"coverage": "c8 node --require ts-node/register ./test/run.ts", | ||
"coverage": "cross-env \"NODE_OPTIONS=--require ts-node/register\" c8 unit", | ||
"prepublishOnly": "npm run build", | ||
"postpublish": "npm run clean" | ||
}, | ||
|
@@ -37,9 +37,12 @@ | |
"author": "KaKa <[email protected]>", | ||
"license": "GPL-3.0", | ||
"devDependencies": { | ||
"@kakang/unit": "workspace:^", | ||
"@types/node": "^20.12.7", | ||
"@typescript-eslint/eslint-plugin": "7.6.0", | ||
"@typescript-eslint/parser": "7.6.0", | ||
"c8": "^9.1.0", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.57.0", | ||
"eslint-config-standard-with-typescript": "^43.0.1", | ||
"eslint-plugin-import": "^2.29.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,9 +21,9 @@ | |
"build": "node ../../scripts/build.mjs --build=\"all\"", | ||
"build:cjs": "node ../../scripts/build.mjs --build='cjs'", | ||
"build:mjs": "node ../../scripts/build.mjs --build='mjs'", | ||
"unit": "node --require ts-node/register ../../scripts/test.mjs", | ||
"unit": "cross-env \"NODE_OPTIONS=--require ts-node/register\" unit", | ||
"test": "npm run lint && npm run unit", | ||
"coverage": "c8 node --require ts-node/register ../../scripts/test.mjs", | ||
"coverage": "cross-env \"NODE_OPTIONS=--require ts-node/register\" c8 unit", | ||
"prepublishOnly": "npm run build", | ||
"postpublish": "npm run clean" | ||
}, | ||
|
@@ -38,9 +38,12 @@ | |
"author": "KaKa <[email protected]>", | ||
"license": "GPL-3.0", | ||
"devDependencies": { | ||
"@kakang/unit": "workspace:^", | ||
"@types/node": "^20.12.7", | ||
"@typescript-eslint/eslint-plugin": "7.6.0", | ||
"@typescript-eslint/parser": "7.6.0", | ||
"c8": "^9.1.0", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.57.0", | ||
"eslint-config-standard-with-typescript": "^43.0.1", | ||
"eslint-plugin-import": "^2.29.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,9 +20,9 @@ | |
"build": "node ../../scripts/build.mjs --build=\"all\"", | ||
"build:cjs": "node ../../scripts/build.mjs --build='cjs'", | ||
"build:mjs": "node ../../scripts/build.mjs --build='mjs'", | ||
"unit": "node --require ts-node/register ../../scripts/test.mjs", | ||
"unit": "cross-env \"NODE_OPTIONS=--require ts-node/register\" unit", | ||
"test": "npm run lint && npm run unit", | ||
"coverage": "c8 node --require ts-node/register ./test/run.ts", | ||
"coverage": "cross-env \"NODE_OPTIONS=--require ts-node/register\" c8 unit", | ||
"prepublishOnly": "npm run build", | ||
"postpublish": "npm run clean" | ||
}, | ||
|
@@ -37,9 +37,12 @@ | |
"author": "KaKa <[email protected]>", | ||
"license": "GPL-3.0", | ||
"devDependencies": { | ||
"@kakang/unit": "workspace:^", | ||
"@types/node": "^20.12.7", | ||
"@typescript-eslint/eslint-plugin": "7.6.0", | ||
"@typescript-eslint/parser": "7.6.0", | ||
"c8": "^9.1.0", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.57.0", | ||
"eslint-config-standard-with-typescript": "^43.0.1", | ||
"eslint-plugin-import": "^2.29.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,9 +20,9 @@ | |
"build": "node ../../scripts/build.mjs --build=\"all\"", | ||
"build:cjs": "node ../../scripts/build.mjs --build='cjs'", | ||
"build:mjs": "node ../../scripts/build.mjs --build='mjs'", | ||
"unit": "node --require ts-node/register ../../scripts/test.mjs", | ||
"unit": "cross-env \"NODE_OPTIONS=--require ts-node/register\" unit", | ||
"test": "npm run lint && npm run unit", | ||
"coverage": "c8 node --require ts-node/register ./test/run.ts", | ||
"coverage": "cross-env \"NODE_OPTIONS=--require ts-node/register\" c8 unit", | ||
"prepublishOnly": "npm run build", | ||
"postpublish": "npm run clean" | ||
}, | ||
|
@@ -37,9 +37,12 @@ | |
"author": "KaKa <[email protected]>", | ||
"license": "GPL-3.0", | ||
"devDependencies": { | ||
"@kakang/unit": "workspace:^", | ||
"@types/node": "^20.12.7", | ||
"@typescript-eslint/eslint-plugin": "7.6.0", | ||
"@typescript-eslint/parser": "7.6.0", | ||
"c8": "^9.1.0", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.57.0", | ||
"eslint-config-standard-with-typescript": "^43.0.1", | ||
"eslint-plugin-import": "^2.29.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,9 +14,9 @@ | |
"build": "node ../../scripts/build.mjs --build=\"all\"", | ||
"build:cjs": "node ../../scripts/build.mjs --build='cjs'", | ||
"build:mjs": "node ../../scripts/build.mjs --build='mjs'", | ||
"unit": "node --require ts-node/register ../../scripts/test.mjs", | ||
"unit": "cross-env \"NODE_OPTIONS=--require ts-node/register\" unit", | ||
"test": "npm run lint && npm run unit", | ||
"coverage": "c8 node --require ts-node/register ./test/run.ts", | ||
"coverage": "cross-env \"NODE_OPTIONS=--require ts-node/register\" c8 unit", | ||
"prepublishOnly": "npm run build", | ||
"postpublish": "npm run clean" | ||
}, | ||
|
@@ -31,9 +31,12 @@ | |
"author": "KaKa <[email protected]>", | ||
"license": "GPL-3.0", | ||
"devDependencies": { | ||
"@kakang/unit": "workspace:^", | ||
"@types/node": "^20.12.7", | ||
"@typescript-eslint/eslint-plugin": "7.6.0", | ||
"@typescript-eslint/parser": "7.6.0", | ||
"c8": "^9.1.0", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.57.0", | ||
"eslint-config-standard-with-typescript": "^43.0.1", | ||
"eslint-plugin-import": "^2.29.1", | ||
|
Oops, something went wrong.