@saashub/qoq-stylelint-scss 3.2.4 → 3.2.5

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.
Files changed (2) hide show
  1. package/AGENTS.md +22 -0
  2. package/package.json +6 -5
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.2.4",
3
+ "version": "3.2.5",
4
4
  "description": "Stylelint config template for SCSS",
5
5
  "keywords": [
6
6
  "stylelint SCSS template",
@@ -29,13 +29,14 @@
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.2.4",
39
+ "@saashub/qoq-stylelint-css": "^3.2.5",
39
40
  "stylelint-config-standard-scss": "17.0.0"
40
41
  },
41
42
  "devDependencies": {
@@ -48,10 +49,10 @@
48
49
  "stylelint": "^17.10.0"
49
50
  },
50
51
  "engines": {
51
- "node": ">=22.13.0"
52
+ "node": ">=22.13.1"
52
53
  },
53
54
  "publishConfig": {
54
55
  "access": "public"
55
56
  },
56
- "gitHead": "4eeb5abb2c4367b88bb164ae327299e12a970593"
57
+ "gitHead": "f31bd90691c966db38454221e7e963ea59fa73f6"
57
58
  }