@neurodevs/eslint-config-ndx 0.0.10 → 0.0.12
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/build/index.d.ts +1 -1
- package/build/index.js +1 -1
- package/build/index.js.map +1 -1
- package/index.d.ts +3 -0
- package/package.json +2 -1
- package/src/index.ts +1 -1
package/build/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './eslint.config.js';
|
|
1
|
+
export { default as esConfigNdx } from './eslint.config.js';
|
package/build/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { default } from './eslint.config.js';
|
|
1
|
+
export { default as esConfigNdx } from './eslint.config.js';
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/build/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,oBAAoB,CAAA"}
|
package/index.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neurodevs/eslint-config-ndx",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "ESLint config for the Neurodevs ecosystem",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"url": "https://github.com/neurodevs/eslint-config-ndx/issues"
|
|
21
21
|
},
|
|
22
22
|
"main": "build/index.js",
|
|
23
|
+
"types": "index.d.ts",
|
|
23
24
|
"scripts": {
|
|
24
25
|
"build.ci": "yarn run build.tsc && yarn run lint",
|
|
25
26
|
"build.dev": "yarn run build.tsc --sourceMap ; yarn run lint",
|
package/src/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './eslint.config.js'
|
|
1
|
+
export { default as esConfigNdx } from './eslint.config.js'
|