Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'workspaces/libnpmaccess')
-rw-r--r--workspaces/libnpmaccess/.gitignore18
-rw-r--r--workspaces/libnpmaccess/package.json14
2 files changed, 19 insertions, 13 deletions
diff --git a/workspaces/libnpmaccess/.gitignore b/workspaces/libnpmaccess/.gitignore
index 617e50ca0..79af2bfca 100644
--- a/workspaces/libnpmaccess/.gitignore
+++ b/workspaces/libnpmaccess/.gitignore
@@ -4,18 +4,18 @@
/*
# keep these
-!/.eslintrc.local.*
!**/.gitignore
-!/docs/
-!/tap-snapshots/
-!/test/
-!/map.js
-!/scripts/
-!/README*
-!/LICENSE*
-!/CHANGELOG*
!/.eslintrc.js
+!/.eslintrc.local.*
!/.gitignore
!/bin/
+!/CHANGELOG*
+!/docs/
!/lib/
+!/LICENSE*
+!/map.js
!/package.json
+!/README*
+!/scripts/
+!/tap-snapshots/
+!/test/
diff --git a/workspaces/libnpmaccess/package.json b/workspaces/libnpmaccess/package.json
index 9dd96bd0a..2e1013375 100644
--- a/workspaces/libnpmaccess/package.json
+++ b/workspaces/libnpmaccess/package.json
@@ -9,14 +9,14 @@
"lint": "eslint \"**/*.js\"",
"test": "tap",
"postlint": "template-oss-check",
- "lintfix": "npm run lint -- --fix",
+ "lintfix": "node ../.. run lint -- --fix",
"snap": "tap",
- "posttest": "npm run lint",
+ "posttest": "node ../.. run lint",
"template-oss-apply": "template-oss-apply --force"
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.1.2",
+ "@npmcli/template-oss": "4.2.0",
"nock": "^13.2.4",
"tap": "^16.0.1"
},
@@ -40,7 +40,13 @@
],
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.1.2",
+ "version": "4.2.0",
"content": "../../scripts/template-oss/index.js"
+ },
+ "tap": {
+ "nyc-arg": [
+ "--exclude",
+ "tap-snapshots/**"
+ ]
}
}