create-node-lib 2.7.1 → 2.7.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.7.1",
3
+ "version": "2.7.3",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -7,9 +7,9 @@ export default [
7
7
  pluginSecurity.configs.recommended,
8
8
  {
9
9
  rules: {
10
- 'no-process-exit': 'warn',
11
- 'node/no-unsupported-features': 'off',
12
- 'node/no-unpublished-require': 'off',
10
+ 'n/no-process-exit': 'warn',
11
+ 'n/no-unsupported-features': 'off',
12
+ 'n/no-unpublished-require': 'off',
13
13
  'security/detect-non-literal-fs-filename': 'error',
14
14
  'security/detect-unsafe-regex': 'error',
15
15
  'security/detect-buffer-noassert': 'error',
@@ -29,4 +29,4 @@ export default [
29
29
  sourceType: 'module',
30
30
  },
31
31
  },
32
- ]
32
+ ]
@@ -37,8 +37,8 @@
37
37
  "lint": "eslint . && npm run lint:lockfile",
38
38
  "lint:fix": "eslint . --fix",
39
39
  "lint:lockfile": "lockfile-lint --path package-lock.json --validate-https --allowed-hosts npm yarn",
40
- "test": "c8 node --loader ts-node/esm --test __tests__/**",
41
- "test:watch": "c8 node --loader ts-node/esm --test --watch __tests__/**",
40
+ "test": "c8 node --loader ts-node/esm --test __tests__/**/*.test.ts",
41
+ "test:watch": "c8 node --loader ts-node/esm --test --watch __tests__/**/*.test.ts",
42
42
  "coverage:view": "open coverage/lcov-report/index.html",
43
43
  "version": "changeset version",
44
44
  "release": "changeset publish"