linted 19.1.0 → 19.1.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.spec.d.ts +1 -0
- package/dist/index.spec.d.ts.map +1 -0
- package/dist/index.spec.js +2 -0
- package/dist/index.spec.js.map +1 -0
- package/package.json +13 -4
- package/src/index.spec.ts +0 -0
- package/tsconfig.json +3 -1
@@ -0,0 +1 @@
|
|
1
|
+
//# sourceMappingURL=index.spec.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.spec.d.ts","sourceRoot":"","sources":["../src/index.spec.ts"],"names":[],"mappings":""}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.spec.js","sourceRoot":"","sources":["../src/index.spec.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
|
-
"_schemaVersion": "20.18.
|
2
|
+
"_schemaVersion": "20.18.1",
|
3
3
|
"name": "linted",
|
4
|
-
"version": "19.1.
|
4
|
+
"version": "19.1.1",
|
5
5
|
"description": "ESLint mono-plugin bundler with strict, opinionated defaults for (Stylistic) JavaScript, TypeScript, Svelte, HTML, Tailwind/CSS, JSON, JSONC, YAML, and Mocha.",
|
6
6
|
"keywords": [
|
7
7
|
"eslint",
|
@@ -61,7 +61,7 @@
|
|
61
61
|
}
|
62
62
|
},
|
63
63
|
"dependencies": {
|
64
|
-
"@eslinted/core": "5.0.
|
64
|
+
"@eslinted/core": "5.0.4",
|
65
65
|
"@html-eslint/eslint-plugin": "0.27.0",
|
66
66
|
"@html-eslint/parser": "0.27.0",
|
67
67
|
"@stylistic/eslint-plugin": "2.9.0",
|
@@ -78,6 +78,10 @@
|
|
78
78
|
},
|
79
79
|
"devDependencies": {
|
80
80
|
"@eslint/config-inspector": "^0.5.5",
|
81
|
+
"@types/chai": "^5.0.0",
|
82
|
+
"@types/mocha": "^10.0.9",
|
83
|
+
"chai": "^5.1.2",
|
84
|
+
"mocha": "^10.7.3",
|
81
85
|
"npm-run-all": "^4.1.5",
|
82
86
|
"run-script-os": "^1.1.6",
|
83
87
|
"ts-add-js-extension": "^1.6.4",
|
@@ -114,7 +118,7 @@
|
|
114
118
|
"lint:scope:svelte": "npm run li -- {src,tests,static}/**/*.svelte",
|
115
119
|
"postbuild": "echo \"Build (+lint) complete.\"",
|
116
120
|
"pretest": "npm run build",
|
117
|
-
"test": "",
|
121
|
+
"test": "mocha",
|
118
122
|
"start": "run-os",
|
119
123
|
"start:default": "npm run starter:$npm_package_config_language",
|
120
124
|
"start:windows": "npm run starter:%npm_package_config_language%",
|
@@ -125,5 +129,10 @@
|
|
125
129
|
"predeploy": "npm test",
|
126
130
|
"deploy": ""
|
127
131
|
},
|
132
|
+
"mocha": {
|
133
|
+
"spec": [
|
134
|
+
"dist/**/*.spec.js"
|
135
|
+
]
|
136
|
+
},
|
128
137
|
"author": "Jimmy Zhening Luo <1450044+jimmy-zhening-luo@users.noreply.github.com> (https://jimm.my/)"
|
129
138
|
}
|
File without changes
|
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,6 +52,8 @@
|
|
52
52
|
// "rootDirs": [],
|
53
53
|
// "typeRoots": [],
|
54
54
|
"types": [
|
55
|
+
"mocha",
|
56
|
+
"chai",
|
55
57
|
/* {CONFIGURE} */
|
56
58
|
],
|
57
59
|
// #endregion MODULES
|