-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Switch to nari from yarn * Disable GH caching to speed up tests * Upgrade to Node 18.x * Add install step
- Loading branch information
Showing
6 changed files
with
33 additions
and
5,807 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
This file was deleted.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -2,17 +2,16 @@ | |
"name": "webpack-virtual-modules", | ||
"version": "0.6.2", | ||
"description": "Webpack Virtual Modules", | ||
"packageManager": "[email protected]", | ||
"main": "src/index.ts", | ||
"scripts": { | ||
"clean": "rm -rf ./lib", | ||
"build": "tsc -p tsconfig.build.json", | ||
"watch": "tsc -p tsconfig.build.json -w", | ||
"tests": "jest", | ||
"tests:watch": "jest --watch", | ||
"test": "yarn lint && yarn tests", | ||
"test": "nari lint && nari tests", | ||
"lint": "eslint --fix src/**/*.ts", | ||
"prepack": "yarn clean && yarn build" | ||
"prepack": "nari clean && nari build" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -37,9 +36,9 @@ | |
"@babel/preset-typescript": "^7.3.3", | ||
"@babel/register": "^7.5.5", | ||
"@types/jest": "^24.0.6", | ||
"@types/node": "^11.11.3", | ||
"@types/node": "^22.7.4", | ||
"@types/tmp": "^0.1.0", | ||
"@types/webpack": "^4.32.1", | ||
"@types/webpack": "^5.28.5", | ||
"@typescript-eslint/eslint-plugin": "^5.26.0", | ||
"@typescript-eslint/parser": "^5.26.0", | ||
"babel-jest": "^29.0.3", | ||
|
@@ -79,5 +78,6 @@ | |
}, | ||
"husky": { | ||
"pre-commit": "lint-staged" | ||
} | ||
} | ||
}, | ||
"lockTime": "2024-10-02T08:19:16.905Z" | ||
} |
Oops, something went wrong.