@npmcli/config 4.0.1 → 4.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,8 +7,8 @@ module.exports = (f, env) => f.replace(envExpr, (orig, esc, name) => {
7
7
 
8
8
  // consume the escape chars that are relevant.
9
9
  if (esc.length % 2) {
10
- return orig.substr((esc.length + 1) / 2)
10
+ return orig.slice((esc.length + 1) / 2)
11
11
  }
12
12
 
13
- return (esc.substr(esc.length / 2)) + val
13
+ return (esc.slice(esc.length / 2)) + val
14
14
  })
package/lib/index.js CHANGED
@@ -366,7 +366,7 @@ class Config {
366
366
  if (!/^npm_config_/i.test(envKey) || envVal === '') {
367
367
  continue
368
368
  }
369
- const key = envKey.substr('npm_config_'.length)
369
+ const key = envKey.slice('npm_config_'.length)
370
370
  .replace(/(?!^)_/g, '-') // don't replace _ at the start of the key
371
371
  .toLowerCase()
372
372
  conf[key] = envVal
@@ -396,13 +396,13 @@ class Config {
396
396
  validate (where) {
397
397
  if (!where) {
398
398
  let valid = true
399
- for (const [where] of this.data.entries()) {
399
+ for (const [entryWhere] of this.data.entries()) {
400
400
  // no need to validate our defaults, we know they're fine
401
401
  // cli was already validated when parsed the first time
402
- if (where === 'default' || where === 'builtin' || where === 'cli') {
402
+ if (entryWhere === 'default' || entryWhere === 'builtin' || entryWhere === 'cli') {
403
403
  continue
404
404
  }
405
- const ret = this.validate(where)
405
+ const ret = this.validate(entryWhere)
406
406
  valid = valid && ret
407
407
  }
408
408
  return valid
@@ -56,7 +56,7 @@ const parseField = (f, key, opts, listElement = false) => {
56
56
  if (isPath) {
57
57
  const homePattern = platform === 'win32' ? /^~(\/|\\)/ : /^~\//
58
58
  if (homePattern.test(f) && home) {
59
- f = resolve(home, f.substr(2))
59
+ f = resolve(home, f.slice(2))
60
60
  } else {
61
61
  f = resolve(f)
62
62
  }
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@npmcli/config",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "files": [
5
- "bin",
6
- "lib"
5
+ "bin/",
6
+ "lib/"
7
7
  ],
8
8
  "main": "lib/index.js",
9
9
  "description": "Configuration management for the npm cli",
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "git+https://github.com/npm/config"
12
+ "url": "https://github.com/npm/config.git"
13
13
  },
14
14
  "author": "GitHub Inc.",
15
15
  "license": "ISC",
@@ -19,23 +19,24 @@
19
19
  "preversion": "npm test",
20
20
  "postversion": "npm publish",
21
21
  "prepublishOnly": "git push origin --follow-tags",
22
- "lint": "eslint '**/*.js'",
23
- "postlint": "npm-template-check",
22
+ "lint": "eslint \"**/*.js\"",
23
+ "postlint": "template-oss-check",
24
24
  "lintfix": "npm run lint -- --fix",
25
25
  "posttest": "npm run lint",
26
- "template-copy": "npm-template-copy --force"
26
+ "template-oss-apply": "template-oss-apply --force"
27
27
  },
28
28
  "tap": {
29
29
  "check-coverage": true,
30
30
  "coverage-map": "map.js"
31
31
  },
32
32
  "devDependencies": {
33
- "@npmcli/template-oss": "^2.8.1",
34
- "tap": "^15.1.6"
33
+ "@npmcli/eslint-config": "^3.0.1",
34
+ "@npmcli/template-oss": "3.2.2",
35
+ "tap": "^16.0.1"
35
36
  },
36
37
  "dependencies": {
37
- "@npmcli/map-workspaces": "^2.0.1",
38
- "ini": "^2.0.0",
38
+ "@npmcli/map-workspaces": "^2.0.2",
39
+ "ini": "^3.0.0",
39
40
  "mkdirp-infer-owner": "^2.0.0",
40
41
  "nopt": "^5.0.0",
41
42
  "proc-log": "^2.0.0",
@@ -44,9 +45,10 @@
44
45
  "walk-up-path": "^1.0.0"
45
46
  },
46
47
  "engines": {
47
- "node": "^12.13.0 || ^14.15.0 || >=16"
48
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
48
49
  },
49
50
  "templateOSS": {
50
- "version": "2.8.1"
51
+ "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
52
+ "version": "3.2.2"
51
53
  }
52
54
  }