@eslinted/core 5.0.3 → 5.0.5
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +6 -4
- package/tsconfig.json +2 -2
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
|
-
"_schemaVersion": "20.18.
|
2
|
+
"_schemaVersion": "20.18.2",
|
3
3
|
"name": "@eslinted/core",
|
4
|
-
"version": "5.0.
|
4
|
+
"version": "5.0.5",
|
5
5
|
"description": "Core ESLint flat config factory npm package `linted`.",
|
6
6
|
"keywords": [],
|
7
7
|
"repository": "github:jimmy-zhening-luo/linted-core",
|
@@ -43,7 +43,7 @@
|
|
43
43
|
"build": "run-os",
|
44
44
|
"build:default": "npm run rebuild -- $npm_package_config_language $npm_package_config_fix $npm_package_config_lint default",
|
45
45
|
"build:windows": "npm run rebuild -- %npm_package_config_language% %npm_package_config_fix% %npm_package_config_lint% windows",
|
46
|
-
"rebuild": "run-s \"clean:{1}:{4}\" \"compile:{1}:*\" \"fix:{2} -- {1}\" \"lint:{3}\" --",
|
46
|
+
"rebuild": "run-s \"clean:{1}:{4}\" \"compile:{1}:*\" \"fix:{2} -- {1}\" \"lint:{3}\" \"test:{1}\" --",
|
47
47
|
"clean:ts:default": "rm -rf dist",
|
48
48
|
"clean:ts:windows": "cmd /c if exist dist rmdir /s /q dist",
|
49
49
|
"clean:svelte:default": "rm -rf build .svelte-kit",
|
@@ -70,7 +70,9 @@
|
|
70
70
|
"lint:scope:svelte": "npm run li -- {src,tests,static}/**/*.svelte",
|
71
71
|
"postbuild": "echo \"Build (+lint) complete.\"",
|
72
72
|
"pretest": "npm run build",
|
73
|
-
"test": "
|
73
|
+
"test": "",
|
74
|
+
"test:ts": "mocha",
|
75
|
+
"test:svelte": "",
|
74
76
|
"start": "run-os",
|
75
77
|
"start:default": "npm run starter:$npm_package_config_language",
|
76
78
|
"start:windows": "npm run starter:%npm_package_config_language%",
|
package/tsconfig.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"display": "@jimbojet/tsc",
|
3
|
-
"_version": "5.6.
|
3
|
+
"_version": "5.6.7",
|
4
4
|
"_help": "https://www.typescriptlang.org/tsconfig/#quick-nav-Top%20Level",
|
5
5
|
"$schema": "https://json.schemastore.org/tsconfig",
|
6
6
|
"include": [
|
@@ -52,9 +52,9 @@
|
|
52
52
|
// "rootDirs": [],
|
53
53
|
// "typeRoots": [],
|
54
54
|
"types": [
|
55
|
-
/* {CONFIGURE} */
|
56
55
|
"mocha",
|
57
56
|
"chai",
|
57
|
+
/* {CONFIGURE} */
|
58
58
|
],
|
59
59
|
// #endregion MODULES
|
60
60
|
|