@anolilab/stylelint-config 5.0.1 → 5.0.3
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/CHANGELOG.md +29 -0
- package/README.md +5 -1
- package/dist/config/a11y.d.mts +16 -0
- package/dist/config/best-practices.d.mts +18 -0
- package/dist/config/declaration-block-no-ignored-properties.d.mts +8 -0
- package/dist/config/high-performance-animation.d.mts +8 -0
- package/dist/config/no-unsupported-browser-features.d.mts +11 -0
- package/dist/config/require-units.d.mts +8 -0
- package/dist/config/selector-no-empty.d.mts +8 -0
- package/dist/config/standard.d.mts +5 -0
- package/dist/config/tailwindcss.d.mts +14 -0
- package/dist/postinstall.d.mts +2 -0
- package/dist/postinstall.js +3 -3
- package/dist/postinstall.js.map +1 -1
- package/dist/postinstall.mjs +3 -3
- package/dist/postinstall.mjs.map +1 -1
- package/package.json +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
## @anolilab/stylelint-config [5.0.3](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/stylelint-config@5.0.2...@anolilab/stylelint-config@5.0.3) (2023-06-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Update package dependencies versions ([7aec41d](https://github.com/anolilab/javascript-style-guide/commit/7aec41d753081b2cca2f1bb1f7daf1615c6568cb))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* **deps:** update dependency stylelint to v15.9.0 ([de7823d](https://github.com/anolilab/javascript-style-guide/commit/de7823dd0d060406b2a77ec5dd06589bd7409c60))
|
|
12
|
+
* update readme ([518bb22](https://github.com/anolilab/javascript-style-guide/commit/518bb2281ec76273348a9549c19a93b6d26ea33d))
|
|
13
|
+
* update readme ([8350799](https://github.com/anolilab/javascript-style-guide/commit/8350799ea6e310d6f6d9af53d333b40e85180984))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Dependencies
|
|
18
|
+
|
|
19
|
+
* **@anolilab/package-json-utils:** upgraded to 1.5.1
|
|
20
|
+
* **browserslist-config-anolilab:** upgraded to 4.1.1
|
|
21
|
+
* **@anolilab/semantic-release-preset:** upgraded to 4.0.2
|
|
22
|
+
|
|
23
|
+
## @anolilab/stylelint-config [5.0.2](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/stylelint-config@5.0.1...@anolilab/stylelint-config@5.0.2) (2023-06-25)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* extended postinstall script file checking ([5f867d7](https://github.com/anolilab/javascript-style-guide/commit/5f867d7b4d3acc9f2af4651b23f8e1a0d206e923))
|
|
29
|
+
|
|
1
30
|
## @anolilab/stylelint-config [5.0.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/stylelint-config@5.0.0...@anolilab/stylelint-config@5.0.1) (2023-06-25)
|
|
2
31
|
|
|
3
32
|
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<h1>Shareable Stylelint Config</h1>
|
|
4
4
|
|
|
5
|
-
This npm package provides a set of shareable configurations for Stylelint 15+ — a linter for CSS.
|
|
5
|
+
This npm package provides a set of shareable configurations for [Stylelint 15+](https://stylelint.io/) — a linter for CSS.
|
|
6
6
|
|
|
7
7
|
[![npm-image]][npm-url] [![license-image]][license-url]
|
|
8
8
|
|
|
@@ -55,6 +55,10 @@ If you don’t have a `.stylelintrc.js`, we will create the file for you after i
|
|
|
55
55
|
|
|
56
56
|
If you already have a `.stylelintrc.js`, then you can extend the `.stylelintrc.js`, with `@anolilab/stylelint-config`.
|
|
57
57
|
|
|
58
|
+
> Note: If the script detects an existing `.stylelintrc.js` file, it will not overwrite it.
|
|
59
|
+
|
|
60
|
+
> Note: It can happen that the postinstall script don't run, then you have to add the `.stylelintrc.js` manually.
|
|
61
|
+
|
|
58
62
|
```js
|
|
59
63
|
module.exports = {
|
|
60
64
|
extends: [
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const config: {
|
|
2
|
+
plugins: string[];
|
|
3
|
+
rules: {
|
|
4
|
+
"a11y/content-property-no-static-value": boolean;
|
|
5
|
+
"a11y/font-size-is-readable": boolean;
|
|
6
|
+
"a11y/line-height-is-vertical-rhythmed": boolean;
|
|
7
|
+
"a11y/no-display-none": boolean;
|
|
8
|
+
"a11y/no-obsolete-attribute": boolean;
|
|
9
|
+
"a11y/no-obsolete-element": boolean;
|
|
10
|
+
"a11y/no-outline-none": boolean;
|
|
11
|
+
"a11y/no-text-align-justify": boolean;
|
|
12
|
+
"a11y/selector-pseudo-class-focus": boolean;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { config as default };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const config: {
|
|
2
|
+
rules: {
|
|
3
|
+
"at-rule-empty-line-before": (string | {
|
|
4
|
+
except: string[];
|
|
5
|
+
ignore: string[];
|
|
6
|
+
ignoreAtRules: string[];
|
|
7
|
+
})[];
|
|
8
|
+
"no-descending-specificity": undefined;
|
|
9
|
+
"rule-empty-line-before": (string | {
|
|
10
|
+
except: string[];
|
|
11
|
+
})[];
|
|
12
|
+
"selector-type-no-unknown": (boolean | {
|
|
13
|
+
ignore: string[];
|
|
14
|
+
})[];
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export { config as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const config: {
|
|
2
|
+
rules: {
|
|
3
|
+
"at-rule-no-unknown": (boolean | {
|
|
4
|
+
ignoreAtRules: string[];
|
|
5
|
+
})[];
|
|
6
|
+
"function-no-unknown": (boolean | {
|
|
7
|
+
ignoreFunctions: string[];
|
|
8
|
+
})[];
|
|
9
|
+
"declaration-block-trailing-semicolon": null;
|
|
10
|
+
"no-descending-specificity": null;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export { config as default };
|
package/dist/postinstall.js
CHANGED
|
@@ -6,13 +6,13 @@ var path = require('path');
|
|
|
6
6
|
var util = require('util');
|
|
7
7
|
|
|
8
8
|
process.env.CI&&process.exit(0);var i=util.promisify(fs.writeFile);console.log("Configuring @anolilab/stylelint-config",packageJsonUtils.projectPath,`
|
|
9
|
-
`);var
|
|
9
|
+
`);var e=".stylelintrc",f=()=>{for(let r of [e,`${e}.js`,`${e}.cjs`,`${e}.json`,`${e}.yaml`,`${e}.yml`,"stylelint.config.js","stylelint.config.cjs"])if(fs.existsSync(path.join(packageJsonUtils.projectPath,r)))return console.warn('\u26A0\uFE0F .stylelintrc.js already exists; Make sure that it includes the following for @anolilab/stylelint-config to work as it should: { "extends": ["@anolilab/stylelint-config"] }.'),Promise.resolve();let t=path.join(packageJsonUtils.projectPath,".stylelintrc.js");return i(t,`${packageJsonUtils.packageIsTypeModule?"export default":"module.exports ="} {
|
|
10
10
|
"extends": [
|
|
11
11
|
"@anolilab/stylelint-config",
|
|
12
12
|
]
|
|
13
13
|
};
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
`,"utf-8")},g=()=>{let t=path.join(packageJsonUtils.projectPath,".stylelintignore"),l=`package.json
|
|
16
16
|
package-lock.json
|
|
17
17
|
yarn.lock
|
|
18
18
|
pnpm-lock.yaml
|
|
@@ -20,6 +20,6 @@ build/**
|
|
|
20
20
|
node_modules/**
|
|
21
21
|
.next/**
|
|
22
22
|
|
|
23
|
-
`;return fs.existsSync(
|
|
23
|
+
`;return fs.existsSync(t)?Promise.resolve():i(t,l,"utf-8")};(async()=>{try{await f(),await g(),console.log("\u{1F60E} Everything went well, have fun!"),process.exit(0);}catch(t){console.log("\u{1F62C} something went wrong:"),console.error(t),process.exit(1);}})();
|
|
24
24
|
//# sourceMappingURL=out.js.map
|
|
25
25
|
//# sourceMappingURL=postinstall.js.map
|
package/dist/postinstall.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/postinstall.ts"],"names":["packageIsTypeModule","projectPath","existsSync","writeFile","join","promisify","writeFileAsync","writeStylelintRc","
|
|
1
|
+
{"version":3,"sources":["../src/postinstall.ts"],"names":["packageIsTypeModule","projectPath","existsSync","writeFile","join","promisify","writeFileAsync","file","writeStylelintRc","filename","stylelintPath","writeStylelintIgnore","stylelintIgnorePath","content","error"],"mappings":"AAAA,OAAS,uBAAAA,EAAqB,eAAAC,MAAmB,+BACjD,OAAS,cAAAC,EAAY,aAAAC,MAAiB,KACtC,OAAS,QAAAC,MAAY,OACrB,OAAS,aAAAC,MAAiB,OAEtB,QAAQ,IAAI,IAEZ,QAAQ,KAAK,CAAC,EAGlB,IAAMC,EAAiBD,EAAUF,CAAS,EAE1C,QAAQ,IAAI,yCAA0CF,EAAa;AAAA,CAAI,EAEvE,IAAMM,EAAO,eAKPC,EAAmB,IAAM,CAE3B,QAAWC,IAAY,CAACF,EAAM,GAAGA,OAAW,GAAGA,QAAY,GAAGA,SAAa,GAAGA,SAAa,GAAGA,QAAY,sBAAuB,sBAAsB,EACnJ,GAAIL,EAAWE,EAAKH,EAAaQ,CAAQ,CAAC,EACtC,eAAQ,KACJ,4LACJ,EAEO,QAAQ,QAAQ,EAI/B,IAAMC,EAAgBN,EAAKH,EAAa,iBAAiB,EASzD,OAAOK,EAAeI,EARN,GAAGV,EAAsB,iBAAmB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQd,OAAO,CACzD,EAKMW,EAAuB,IAAM,CAC/B,IAAMC,EAAsBR,EAAKH,EAAa,kBAAkB,EAC1DY,EAAU;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAUhB,OAAIX,EAAWU,CAAmB,EACvB,QAAQ,QAAQ,EAGpBN,EAAeM,EAAqBC,EAAS,OAAO,CAC/D,GAGC,SAAY,CACT,GAAI,CACA,MAAML,EAAiB,EACvB,MAAMG,EAAqB,EAE3B,QAAQ,IAAI,4CAAqC,EAGjD,QAAQ,KAAK,CAAC,CAClB,OAASG,EAAP,CACE,QAAQ,IAAI,kCAA2B,EACvC,QAAQ,MAAMA,CAAK,EAGnB,QAAQ,KAAK,CAAC,CAClB,CACJ,GAAG","sourcesContent":["import { packageIsTypeModule, projectPath } from \"@anolilab/package-json-utils\";\nimport { existsSync, writeFile } from \"node:fs\";\nimport { join } from \"node:path\";\nimport { promisify } from \"node:util\";\n\nif (process.env[\"CI\"]) {\n // eslint-disable-next-line unicorn/no-process-exit\n process.exit(0);\n}\n\nconst writeFileAsync = promisify(writeFile);\n\nconsole.log(\"Configuring @anolilab/stylelint-config\", projectPath, \"\\n\");\n\nconst file = \".stylelintrc\";\n\n/**\n * Writes .stylelintrc.cjs if it doesn't exist. Warns if it exists.\n */\nconst writeStylelintRc = () => {\n // eslint-disable-next-line no-restricted-syntax\n for (const filename of [file, `${file}.js`, `${file}.cjs`, `${file}.json`, `${file}.yaml`, `${file}.yml`, `stylelint.config.js`, `stylelint.config.cjs`]) {\n if (existsSync(join(projectPath, filename))) {\n console.warn(\n '⚠️ .stylelintrc.js already exists; Make sure that it includes the following for @anolilab/stylelint-config to work as it should: { \"extends\": [\"@anolilab/stylelint-config\"] }.',\n );\n\n return Promise.resolve();\n }\n }\n\n const stylelintPath = join(projectPath, \".stylelintrc.js\");\n const content = `${packageIsTypeModule ? \"export default\" : \"module.exports =\"} {\n \"extends\": [\n \"@anolilab/stylelint-config\",\n ]\n};\n\n`;\n\n return writeFileAsync(stylelintPath, content, \"utf-8\");\n};\n\n/**\n * Writes .stylelintignore if it doesn't exist. Warns if it exists.\n */\nconst writeStylelintIgnore = () => {\n const stylelintIgnorePath = join(projectPath, \".stylelintignore\");\n const content = `package.json\npackage-lock.json\nyarn.lock\npnpm-lock.yaml\nbuild/**\nnode_modules/**\n.next/**\n\n`;\n\n if (existsSync(stylelintIgnorePath)) {\n return Promise.resolve();\n }\n\n return writeFileAsync(stylelintIgnorePath, content, \"utf-8\");\n};\n\n// eslint-disable-next-line unicorn/prefer-top-level-await\n(async () => {\n try {\n await writeStylelintRc();\n await writeStylelintIgnore();\n\n console.log(\"😎 Everything went well, have fun!\");\n\n // eslint-disable-next-line unicorn/no-process-exit\n process.exit(0);\n } catch (error) {\n console.log(\"😬 something went wrong:\");\n console.error(error);\n\n // eslint-disable-next-line unicorn/no-process-exit\n process.exit(1);\n }\n})();\n"]}
|
package/dist/postinstall.mjs
CHANGED
|
@@ -4,13 +4,13 @@ import { join } from 'path';
|
|
|
4
4
|
import { promisify } from 'util';
|
|
5
5
|
|
|
6
6
|
process.env.CI&&process.exit(0);var i=promisify(writeFile);console.log("Configuring @anolilab/stylelint-config",projectPath,`
|
|
7
|
-
`);var
|
|
7
|
+
`);var e=".stylelintrc",f=()=>{for(let r of [e,`${e}.js`,`${e}.cjs`,`${e}.json`,`${e}.yaml`,`${e}.yml`,"stylelint.config.js","stylelint.config.cjs"])if(existsSync(join(projectPath,r)))return console.warn('\u26A0\uFE0F .stylelintrc.js already exists; Make sure that it includes the following for @anolilab/stylelint-config to work as it should: { "extends": ["@anolilab/stylelint-config"] }.'),Promise.resolve();let t=join(projectPath,".stylelintrc.js");return i(t,`${packageIsTypeModule?"export default":"module.exports ="} {
|
|
8
8
|
"extends": [
|
|
9
9
|
"@anolilab/stylelint-config",
|
|
10
10
|
]
|
|
11
11
|
};
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
`,"utf-8")},g=()=>{let t=join(projectPath,".stylelintignore"),l=`package.json
|
|
14
14
|
package-lock.json
|
|
15
15
|
yarn.lock
|
|
16
16
|
pnpm-lock.yaml
|
|
@@ -18,6 +18,6 @@ build/**
|
|
|
18
18
|
node_modules/**
|
|
19
19
|
.next/**
|
|
20
20
|
|
|
21
|
-
`;return existsSync(
|
|
21
|
+
`;return existsSync(t)?Promise.resolve():i(t,l,"utf-8")};(async()=>{try{await f(),await g(),console.log("\u{1F60E} Everything went well, have fun!"),process.exit(0);}catch(t){console.log("\u{1F62C} something went wrong:"),console.error(t),process.exit(1);}})();
|
|
22
22
|
//# sourceMappingURL=out.js.map
|
|
23
23
|
//# sourceMappingURL=postinstall.mjs.map
|
package/dist/postinstall.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/postinstall.ts"],"names":["packageIsTypeModule","projectPath","existsSync","writeFile","join","promisify","writeFileAsync","writeStylelintRc","
|
|
1
|
+
{"version":3,"sources":["../src/postinstall.ts"],"names":["packageIsTypeModule","projectPath","existsSync","writeFile","join","promisify","writeFileAsync","file","writeStylelintRc","filename","stylelintPath","writeStylelintIgnore","stylelintIgnorePath","content","error"],"mappings":"AAAA,OAAS,uBAAAA,EAAqB,eAAAC,MAAmB,+BACjD,OAAS,cAAAC,EAAY,aAAAC,MAAiB,KACtC,OAAS,QAAAC,MAAY,OACrB,OAAS,aAAAC,MAAiB,OAEtB,QAAQ,IAAI,IAEZ,QAAQ,KAAK,CAAC,EAGlB,IAAMC,EAAiBD,EAAUF,CAAS,EAE1C,QAAQ,IAAI,yCAA0CF,EAAa;AAAA,CAAI,EAEvE,IAAMM,EAAO,eAKPC,EAAmB,IAAM,CAE3B,QAAWC,IAAY,CAACF,EAAM,GAAGA,OAAW,GAAGA,QAAY,GAAGA,SAAa,GAAGA,SAAa,GAAGA,QAAY,sBAAuB,sBAAsB,EACnJ,GAAIL,EAAWE,EAAKH,EAAaQ,CAAQ,CAAC,EACtC,eAAQ,KACJ,4LACJ,EAEO,QAAQ,QAAQ,EAI/B,IAAMC,EAAgBN,EAAKH,EAAa,iBAAiB,EASzD,OAAOK,EAAeI,EARN,GAAGV,EAAsB,iBAAmB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQd,OAAO,CACzD,EAKMW,EAAuB,IAAM,CAC/B,IAAMC,EAAsBR,EAAKH,EAAa,kBAAkB,EAC1DY,EAAU;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAUhB,OAAIX,EAAWU,CAAmB,EACvB,QAAQ,QAAQ,EAGpBN,EAAeM,EAAqBC,EAAS,OAAO,CAC/D,GAGC,SAAY,CACT,GAAI,CACA,MAAML,EAAiB,EACvB,MAAMG,EAAqB,EAE3B,QAAQ,IAAI,4CAAqC,EAGjD,QAAQ,KAAK,CAAC,CAClB,OAASG,EAAP,CACE,QAAQ,IAAI,kCAA2B,EACvC,QAAQ,MAAMA,CAAK,EAGnB,QAAQ,KAAK,CAAC,CAClB,CACJ,GAAG","sourcesContent":["import { packageIsTypeModule, projectPath } from \"@anolilab/package-json-utils\";\nimport { existsSync, writeFile } from \"node:fs\";\nimport { join } from \"node:path\";\nimport { promisify } from \"node:util\";\n\nif (process.env[\"CI\"]) {\n // eslint-disable-next-line unicorn/no-process-exit\n process.exit(0);\n}\n\nconst writeFileAsync = promisify(writeFile);\n\nconsole.log(\"Configuring @anolilab/stylelint-config\", projectPath, \"\\n\");\n\nconst file = \".stylelintrc\";\n\n/**\n * Writes .stylelintrc.cjs if it doesn't exist. Warns if it exists.\n */\nconst writeStylelintRc = () => {\n // eslint-disable-next-line no-restricted-syntax\n for (const filename of [file, `${file}.js`, `${file}.cjs`, `${file}.json`, `${file}.yaml`, `${file}.yml`, `stylelint.config.js`, `stylelint.config.cjs`]) {\n if (existsSync(join(projectPath, filename))) {\n console.warn(\n '⚠️ .stylelintrc.js already exists; Make sure that it includes the following for @anolilab/stylelint-config to work as it should: { \"extends\": [\"@anolilab/stylelint-config\"] }.',\n );\n\n return Promise.resolve();\n }\n }\n\n const stylelintPath = join(projectPath, \".stylelintrc.js\");\n const content = `${packageIsTypeModule ? \"export default\" : \"module.exports =\"} {\n \"extends\": [\n \"@anolilab/stylelint-config\",\n ]\n};\n\n`;\n\n return writeFileAsync(stylelintPath, content, \"utf-8\");\n};\n\n/**\n * Writes .stylelintignore if it doesn't exist. Warns if it exists.\n */\nconst writeStylelintIgnore = () => {\n const stylelintIgnorePath = join(projectPath, \".stylelintignore\");\n const content = `package.json\npackage-lock.json\nyarn.lock\npnpm-lock.yaml\nbuild/**\nnode_modules/**\n.next/**\n\n`;\n\n if (existsSync(stylelintIgnorePath)) {\n return Promise.resolve();\n }\n\n return writeFileAsync(stylelintIgnorePath, content, \"utf-8\");\n};\n\n// eslint-disable-next-line unicorn/prefer-top-level-await\n(async () => {\n try {\n await writeStylelintRc();\n await writeStylelintIgnore();\n\n console.log(\"😎 Everything went well, have fun!\");\n\n // eslint-disable-next-line unicorn/no-process-exit\n process.exit(0);\n } catch (error) {\n console.log(\"😬 something went wrong:\");\n console.error(error);\n\n // eslint-disable-next-line unicorn/no-process-exit\n process.exit(1);\n }\n})();\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/stylelint-config",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.3",
|
|
4
4
|
"description": "Stylelint shareable config for the Anolilab stylesheet guide.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"css",
|
|
@@ -103,22 +103,24 @@
|
|
|
103
103
|
"test:coverage": "vitest --config ./vitest.config.ts --run --coverage"
|
|
104
104
|
},
|
|
105
105
|
"dependencies": {
|
|
106
|
-
"@anolilab/package-json-utils": "1.5.
|
|
106
|
+
"@anolilab/package-json-utils": "1.5.1",
|
|
107
107
|
"@ronilaukkarinen/stylelint-a11y": "^1.2.7",
|
|
108
|
-
"browserslist-config-anolilab": "4.1.
|
|
108
|
+
"browserslist-config-anolilab": "4.1.1",
|
|
109
109
|
"stylelint-config-clean-order": "^5.0.1",
|
|
110
110
|
"stylelint-config-standard": "^33.0.0",
|
|
111
111
|
"stylelint-declaration-block-no-ignored-properties": "^2.7.0",
|
|
112
112
|
"stylelint-high-performance-animation": "^1.8.0",
|
|
113
113
|
"stylelint-no-unsupported-browser-features": "^6.1.0",
|
|
114
114
|
"stylelint-require-units": "^1.0.2",
|
|
115
|
-
"stylelint-selector-no-empty": "^1.0.9"
|
|
115
|
+
"stylelint-selector-no-empty": "^1.0.9",
|
|
116
|
+
"tsup": "^7.1.0",
|
|
117
|
+
"vitest": "^0.32.2"
|
|
116
118
|
},
|
|
117
119
|
"devDependencies": {
|
|
118
|
-
"@anolilab/semantic-release-preset": "4.0.
|
|
120
|
+
"@anolilab/semantic-release-preset": "4.0.2",
|
|
119
121
|
"postcss": "^8.4.24",
|
|
120
122
|
"semantic-release": "^21.0.5",
|
|
121
|
-
"stylelint": "15.
|
|
123
|
+
"stylelint": "15.9.0",
|
|
122
124
|
"vitest": "^0.32.2"
|
|
123
125
|
},
|
|
124
126
|
"peerDependencies": {
|