@jesscss/plugin-scss 2.0.0-alpha.7 → 2.0.0-alpha.8

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/README.md +35 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,3 +1,36 @@
1
- # jess-plugin-less
1
+ # @jesscss/plugin-scss
2
2
 
3
- Provides the Less parser and evaluator to Jess.
3
+ **The SCSS language engine for Jess the experimental base that seeds
4
+ "Sass+".**
5
+
6
+ This plugin layers an SCSS grammar (`@jesscss/scss-parser`) onto the Jess
7
+ compiler, the same way [`@jesscss/plugin-less`](../jess-plugin-less) provides the
8
+ Less engine. It parses `.scss` into the Jess AST for the engine to evaluate and
9
+ emit.
10
+
11
+ ## Roadmap status — experimental, not the alpha focus
12
+
13
+ Jess's language is an **ordered progression: Now Less.js → Next "Sass+" →
14
+ Final `.jess`.** Only Less.js is shipping today.
15
+
16
+ `plugin-scss` sits at the **"Next"** milestone. It is the experimental base for
17
+ **Sass+** — the intended Sass successor, a dialect that fixes and extends
18
+ Sass-style ergonomics — but Sass+ itself is **not shipped**, and SCSS support is
19
+ **not a goal of the current Less-focused alpha.** Expect gaps and breaking
20
+ changes. If you need production Sass today, use Sass.
21
+
22
+ What exists now is the SCSS parser plus this plugin wiring; the Sass+ dialect,
23
+ semantics, and defaults are still being designed. Treat anything here as a
24
+ preview, not a promise.
25
+
26
+ ## Status
27
+
28
+ **Alpha / experimental.** Part of [Jess](https://github.com/jesscss/jess), the
29
+ ground-up rewrite of Less.js (Jess *is* Less.js v5). The programmatic
30
+ plugin/compiler API is **not yet stabilized** — the `jess` / `lessc` CLIs are the
31
+ public surface for the alpha, and they target Less.
32
+
33
+ - Project overview & positioning: <https://github.com/jesscss/jess#readme>
34
+ - Docs: <https://jesscss.github.io/> (currently pre-alpha content)
35
+ - Issues: <https://github.com/jesscss/jess/issues>
36
+ - License: MIT
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "description": "An SCSS stylesheet engine for Jess",
7
- "version": "2.0.0-alpha.7",
7
+ "version": "2.0.0-alpha.8",
8
8
  "main": "lib/index.cjs",
9
9
  "types": "lib/index.d.ts",
10
10
  "exports": {
@@ -19,9 +19,9 @@
19
19
  "lib"
20
20
  ],
21
21
  "dependencies": {
22
- "@jesscss/core": "2.0.0-alpha.7",
23
- "@jesscss/scss-parser": "2.0.0-alpha.7",
24
- "@jesscss/style-resolver": "2.0.0-alpha.7"
22
+ "@jesscss/core": "2.0.0-alpha.8",
23
+ "@jesscss/scss-parser": "2.0.0-alpha.8",
24
+ "@jesscss/style-resolver": "2.0.0-alpha.8"
25
25
  },
26
26
  "devDependencies": {},
27
27
  "author": "Matthew Dean <matthew-dean@users.noreply.github.com>",