@saashub/qoq-stylelint-scss 3.2.4 → 3.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/AGENTS.md +22 -0
- package/package.json +7 -6
package/AGENTS.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# @saashub/qoq-stylelint-scss — Agent Context
|
|
2
|
+
|
|
3
|
+
Stylelint configuration template for SCSS projects. Extends `@saashub/qoq-stylelint-css`.
|
|
4
|
+
|
|
5
|
+
## Exports
|
|
6
|
+
|
|
7
|
+
- `baseConfig` — Stylelint config object for SCSS, ready to use or extend
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
Typically consumed via `qoq.config.js` using the `template` field (handled by `@saashub/qoq-cli`). For manual use:
|
|
12
|
+
|
|
13
|
+
```js
|
|
14
|
+
import { baseConfig } from '@saashub/qoq-stylelint-scss';
|
|
15
|
+
|
|
16
|
+
export default baseConfig;
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Added on top of CSS base
|
|
20
|
+
|
|
21
|
+
- Replaces `stylelint-config-standard` with `stylelint-config-standard-scss`
|
|
22
|
+
- SCSS file override: `css-nesting` browser feature suppressed from unsupported-feature warnings
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saashub/qoq-stylelint-scss",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "Stylelint config template for SCSS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"stylelint SCSS template",
|
|
@@ -29,29 +29,30 @@
|
|
|
29
29
|
"module": "./lib/index.mjs",
|
|
30
30
|
"types": "./lib/index.d.ts",
|
|
31
31
|
"files": [
|
|
32
|
-
"lib"
|
|
32
|
+
"lib",
|
|
33
|
+
"AGENTS.md"
|
|
33
34
|
],
|
|
34
35
|
"scripts": {
|
|
35
36
|
"build": "rimraf ./lib && rollup -c --silent"
|
|
36
37
|
},
|
|
37
38
|
"dependencies": {
|
|
38
|
-
"@saashub/qoq-stylelint-css": "^3.
|
|
39
|
+
"@saashub/qoq-stylelint-css": "^3.3.0",
|
|
39
40
|
"stylelint-config-standard-scss": "17.0.0"
|
|
40
41
|
},
|
|
41
42
|
"devDependencies": {
|
|
42
43
|
"@rollup/plugin-typescript": "12.3.0",
|
|
43
44
|
"rimraf": "6.1.3",
|
|
44
|
-
"rollup": "4.
|
|
45
|
+
"rollup": "4.61.0",
|
|
45
46
|
"typescript": "6.0.3"
|
|
46
47
|
},
|
|
47
48
|
"peerDependencies": {
|
|
48
49
|
"stylelint": "^17.10.0"
|
|
49
50
|
},
|
|
50
51
|
"engines": {
|
|
51
|
-
"node": ">=22.
|
|
52
|
+
"node": ">=22.15.0"
|
|
52
53
|
},
|
|
53
54
|
"publishConfig": {
|
|
54
55
|
"access": "public"
|
|
55
56
|
},
|
|
56
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "a73b3013eca8fefbf08c8bd59766676e1980d77b"
|
|
57
58
|
}
|