@zthun/janitor-stylelint-config-sass 19.2.0 → 19.2.2
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/dist/index.cjs +7 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -7
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
2
3
|
const config = {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
extends: [
|
|
5
|
+
"stylelint-config-standard-sass",
|
|
6
|
+
"@zthun/janitor-stylelint-config"
|
|
7
|
+
]
|
|
7
8
|
};
|
|
9
|
+
|
|
8
10
|
module.exports = config;
|
|
9
11
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":["../src/index.mts"],"sourcesContent":["import type { Config } from \"stylelint\";\n\nconst config: Config = {\n extends: [\n \"stylelint-config-standard-sass\",\n \"@zthun/janitor-stylelint-config\",\n ],\n};\n\nexport default config;\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":["../src/index.mts"],"sourcesContent":["import type { Config } from \"stylelint\";\n\nconst config: Config = {\n extends: [\n \"stylelint-config-standard-sass\",\n \"@zthun/janitor-stylelint-config\",\n ],\n};\n\nexport default config;\n"],"names":["config","extends"],"mappings":";;AAEA,MAAMA,MAAiB,GAAA;IACrBC,OAAS,EAAA;AACP,QAAA,gCAAA;AACA,QAAA;AACD;AACH;;;;"}
|
package/dist/index.js
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
const config = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
};
|
|
7
|
-
export {
|
|
8
|
-
config as default
|
|
2
|
+
extends: [
|
|
3
|
+
"stylelint-config-standard-sass",
|
|
4
|
+
"@zthun/janitor-stylelint-config"
|
|
5
|
+
]
|
|
9
6
|
};
|
|
7
|
+
|
|
8
|
+
export { config as default };
|
|
10
9
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/index.mts"],"sourcesContent":["import type { Config } from \"stylelint\";\n\nconst config: Config = {\n extends: [\n \"stylelint-config-standard-sass\",\n \"@zthun/janitor-stylelint-config\",\n ],\n};\n\nexport default config;\n"],"names":[],"mappings":"AAEA,
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/index.mts"],"sourcesContent":["import type { Config } from \"stylelint\";\n\nconst config: Config = {\n extends: [\n \"stylelint-config-standard-sass\",\n \"@zthun/janitor-stylelint-config\",\n ],\n};\n\nexport default config;\n"],"names":["config","extends"],"mappings":"AAEA,MAAMA,MAAiB,GAAA;IACrBC,OAAS,EAAA;AACP,QAAA,gCAAA;AACA,QAAA;AACD;AACH;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zthun/janitor-stylelint-config-sass",
|
|
3
|
-
"version": "19.2.
|
|
3
|
+
"version": "19.2.2",
|
|
4
4
|
"description": "A shared configuration for stylelint for @zthun scoped projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"stylelint",
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
"build": "vite build"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@zthun/janitor-stylelint-config": "^19.2.
|
|
32
|
+
"@zthun/janitor-stylelint-config": "^19.2.2",
|
|
33
33
|
"stylelint-config-standard-scss": "^15.0.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@zthun/janitor-build-config": "^19.2.
|
|
37
|
-
"postcss": "^8.5.
|
|
38
|
-
"stylelint": "^16.
|
|
36
|
+
"@zthun/janitor-build-config": "^19.2.2",
|
|
37
|
+
"postcss": "^8.5.6",
|
|
38
|
+
"stylelint": "^16.21.0",
|
|
39
39
|
"vite": "^6.3.5"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
48
|
"author": "Anthony Bonta",
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "28f5ca31a2e299e343c3fd25163befa971f6a5e9"
|
|
50
50
|
}
|