@eslinted/core 24.1.6 → 24.1.7
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 +6 -6
package/package.json
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
{
|
2
|
-
"$pkg": "2211.
|
2
|
+
"$pkg": "2211.6.0",
|
3
3
|
"$schema": "https://json.schemastore.org/package",
|
4
4
|
"$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
|
5
5
|
"name": "@eslinted/core",
|
6
|
-
"version": "24.1.
|
6
|
+
"version": "24.1.7",
|
7
7
|
"repository": "github:jimmy-zhening-luo/linted-core",
|
8
8
|
"description": "Internal core for npm package `linted`, responsible for producing an array of fully-formed ESLint configurations according to `linted` spec.",
|
9
9
|
"keywords": [],
|
@@ -20,14 +20,14 @@
|
|
20
20
|
"@types/chai": "^5.2.2",
|
21
21
|
"@types/mocha": "^10.0.10",
|
22
22
|
"chai": "^6.2.0",
|
23
|
-
"mocha": "^11.7.
|
23
|
+
"mocha": "^11.7.4",
|
24
24
|
"ts-add-js-extension": "^1.6.6",
|
25
25
|
"typescript": "^5.9.3"
|
26
26
|
},
|
27
27
|
"main": "dist/index.js",
|
28
28
|
"types": "dist/index.d.ts",
|
29
29
|
"scripts": {
|
30
|
-
"clean": "cmd --% /c \"(if exist dist rmdir /s /q dist) & (if exist build rmdir /s /q build) & (if exist .
|
30
|
+
"clean": "cmd --% /c \"(if exist dist rmdir /s /q dist) & (if exist build rmdir /s /q build) & (if exist .eslintcache del /f /q .eslintcache)\" || rm -rf dist build .eslintcache",
|
31
31
|
"prebuild": "npm run clean",
|
32
32
|
"build": "cmd /c \"(if exist svelte.config.js (npm run build:svelte) else (npm run build:ts))\" || bash -c 'if [ -f svelte.config.js ]; then npm run build:svelte; else npm run build:ts; fi'",
|
33
33
|
"build:ts": "tsc && ts-add-js-extension --dir=dist --showprogress=false",
|
@@ -35,8 +35,8 @@
|
|
35
35
|
"postbuild": "npm run lint || echo \"Lint failed. Continuing...\"",
|
36
36
|
"lint": "eslint --cache --fix",
|
37
37
|
"pretest": "npm run build",
|
38
|
-
"test": "npm run --if-present test:
|
39
|
-
"test:
|
38
|
+
"test": "npm run --if-present test:runner",
|
39
|
+
"test:runner": "mocha",
|
40
40
|
"prestart": "npm run --ignore-scripts build",
|
41
41
|
"start": "cmd --% /c \"(if exist svelte.config.js (npm run start:svelte) else (npm run start:ts))\" || bash -c 'if [ -f svelte.config.js ]; then npm run start:svelte; else npm run start:ts; fi'",
|
42
42
|
"start:ts": "node .",
|