@alexaegis/stylelint-config 0.2.0 → 0.3.0
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/index.cjs +5 -1
- package/index.cjs.map +1 -1
- package/index.d.ts.map +1 -1
- package/index.js +5 -1
- package/index.js.map +1 -1
- package/package.json +38 -27
package/index.cjs
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
const index = {
|
|
3
|
-
extends: [
|
|
3
|
+
extends: [
|
|
4
|
+
"stylelint-config-standard",
|
|
5
|
+
"stylelint-config-standard-scss",
|
|
6
|
+
"stylelint-config-html"
|
|
7
|
+
]
|
|
4
8
|
};
|
|
5
9
|
module.exports = index;
|
|
6
10
|
//# sourceMappingURL=index.cjs.map
|
package/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":["../src/index.ts"],"sourcesContent":["import type { Config } from 'stylelint';\n\nexport default {\n\textends: ['stylelint-config-standard'
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":["../src/index.ts"],"sourcesContent":["import type { Config } from 'stylelint';\n\nexport default {\n\textends: [\n\t\t'stylelint-config-standard',\n\t\t'stylelint-config-standard-scss',\n\t\t'stylelint-config-html',\n\t],\n} as Config;\n"],"names":[],"mappings":";AAEA,MAAe,QAAA;AAAA,EACd,SAAS;AAAA,IACR;AAAA,IACA;AAAA,IACA;AAAA,EACD;AACD;;"}
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;;AAExC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;;AAExC,wBAMY"}
|
package/index.js
CHANGED
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import type { Config } from 'stylelint';\n\nexport default {\n\textends: ['stylelint-config-standard'
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import type { Config } from 'stylelint';\n\nexport default {\n\textends: [\n\t\t'stylelint-config-standard',\n\t\t'stylelint-config-standard-scss',\n\t\t'stylelint-config-html',\n\t],\n} as Config;\n"],"names":[],"mappings":"AAEA,MAAe,QAAA;AAAA,EACd,SAAS;AAAA,IACR;AAAA,IACA;AAAA,IACA;AAAA,EACD;AACD;"}
|
package/package.json
CHANGED
|
@@ -1,28 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexaegis/stylelint-config",
|
|
3
3
|
"description": "My stylelint config",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"license": "mit",
|
|
6
6
|
"private": false,
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
"homepage": "https://github.com/AlexAegis/js-tooling",
|
|
13
|
-
"bugs": {
|
|
14
|
-
"email": "alexaegis@gmail.com",
|
|
15
|
-
"url": "https://github.com/AlexAegis/js-tooling/issues"
|
|
7
|
+
"archetype": {
|
|
8
|
+
"platform": "node",
|
|
9
|
+
"framework": "stylelint",
|
|
10
|
+
"language": "ts",
|
|
11
|
+
"kind": "lib"
|
|
16
12
|
},
|
|
17
13
|
"keywords": [
|
|
18
14
|
"eslint",
|
|
19
15
|
"javascript",
|
|
20
16
|
"js",
|
|
17
|
+
"managed-by-autotool",
|
|
21
18
|
"ts",
|
|
22
19
|
"tsconfig",
|
|
23
20
|
"turbo",
|
|
24
21
|
"typescript"
|
|
25
22
|
],
|
|
23
|
+
"author": {
|
|
24
|
+
"email": "alexaegis@gmail.com",
|
|
25
|
+
"name": "Alex Aegis",
|
|
26
|
+
"url": "https://github.com/AlexAegis"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/AlexAegis/js-tooling",
|
|
29
|
+
"bugs": {
|
|
30
|
+
"email": "alexaegis@gmail.com",
|
|
31
|
+
"url": "https://github.com/AlexAegis/js-tooling/issues"
|
|
32
|
+
},
|
|
26
33
|
"type": "module",
|
|
27
34
|
"config": {
|
|
28
35
|
"engine-strict": true
|
|
@@ -42,37 +49,41 @@
|
|
|
42
49
|
"./readme": "./readme.md"
|
|
43
50
|
},
|
|
44
51
|
"dependencies": {
|
|
52
|
+
"stylelint-config-html": "^1.1.0",
|
|
45
53
|
"stylelint-config-standard": "^33.0.0",
|
|
46
|
-
"stylelint-config-standard-scss": "^
|
|
54
|
+
"stylelint-config-standard-scss": "^9.0.0"
|
|
47
55
|
},
|
|
48
56
|
"devDependencies": {
|
|
49
|
-
"@alexaegis/eslint-config-vitest": "^0.
|
|
50
|
-
"@alexaegis/ts": "^0.
|
|
51
|
-
"@alexaegis/vite": "^0.
|
|
52
|
-
"@alexaegis/vitest": "^0.
|
|
53
|
-
"@types/node": "^
|
|
54
|
-
"@vitest/coverage-c8": "^0.
|
|
55
|
-
"
|
|
57
|
+
"@alexaegis/eslint-config-vitest": "^0.3.0",
|
|
58
|
+
"@alexaegis/ts": "^0.3.0",
|
|
59
|
+
"@alexaegis/vite": "^0.3.0",
|
|
60
|
+
"@alexaegis/vitest": "^0.3.0",
|
|
61
|
+
"@types/node": "^20.2.1",
|
|
62
|
+
"@vitest/coverage-c8": "^0.31.1",
|
|
63
|
+
"publint": "^0.1.11",
|
|
64
|
+
"stylelint": "^15.6.2",
|
|
56
65
|
"typescript": "^5.0.4",
|
|
57
|
-
"vite": "^4.3.
|
|
58
|
-
"vitest": "^0.
|
|
66
|
+
"vite": "^4.3.8",
|
|
67
|
+
"vitest": "^0.31.1"
|
|
59
68
|
},
|
|
60
69
|
"scripts": {
|
|
61
|
-
"build": "turbo run build-lib_ --concurrency
|
|
70
|
+
"build": "turbo run build-lib_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
62
71
|
"build-lib_": "vite build",
|
|
63
72
|
"lint:style:require:build-lib_": "# chain",
|
|
64
|
-
"lint:depcheck": "turbo run lint:depcheck_ --concurrency
|
|
73
|
+
"lint:depcheck": "turbo run lint:depcheck_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
65
74
|
"lint:depcheck_": "depcheck",
|
|
66
|
-
"lint:es": "turbo run lint:es_ --concurrency
|
|
75
|
+
"lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
67
76
|
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
|
|
68
|
-
"lint:format": "turbo run lint:format_ --concurrency
|
|
77
|
+
"lint:format": "turbo run lint:format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
69
78
|
"lint:format_": "prettier --check .",
|
|
70
|
-
"lint:md": "turbo run lint:md_ --concurrency
|
|
79
|
+
"lint:md": "turbo run lint:md_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
71
80
|
"lint:md_": "remark --frail --no-stdout --silently-ignore *.md docs/**/*.md",
|
|
72
|
-
"lint:tsc": "turbo run lint:tsc_ --concurrency
|
|
81
|
+
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
73
82
|
"lint:tsc_": "tsc --noEmit",
|
|
83
|
+
"publint": "turbo run publint_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
84
|
+
"publint_": "publint dist",
|
|
74
85
|
"format": "prettier --write .",
|
|
75
|
-
"test": "turbo run test_ --concurrency
|
|
86
|
+
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
76
87
|
"test_": "vitest --passWithNoTests --coverage --run",
|
|
77
88
|
"test:watch": "vitest --passWithNoTests --coverage"
|
|
78
89
|
}
|