@10stars/config 7.0.0 → 7.0.1

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.
Files changed (2) hide show
  1. package/.eslintrc.js +6 -1
  2. package/package.json +1 -1
package/.eslintrc.js CHANGED
@@ -102,7 +102,12 @@ module.exports = {
102
102
  "import/no-duplicates": type.warning,
103
103
  "import/no-nodejs-modules": [
104
104
  type.error,
105
- { allow: builtinModules.map((v) => `node:${v}`) },
105
+ {
106
+ allow: builtinModules.flatMap((v) => [
107
+ `node:${v}`,
108
+ `node:${v}/promises`,
109
+ ]),
110
+ },
106
111
  ],
107
112
  /**
108
113
  * eslint-plugin-simple-import-sort
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "name": "@10stars/config",
7
7
  "description": "10stars.dev Shareable Configs",
8
- "version": "7.0.0",
8
+ "version": "7.0.1",
9
9
  "author": "10stars.dev <web@alexandrov.co> (https://alexandrov.co)",
10
10
  "keywords": ["config"],
11
11
  "license": "MIT",