@d-zero/csstree-scss-syntax 5.0.0-alpha.15 → 5.0.0-alpha.17
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.js +1 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as CSSTree from 'css-tree';
|
|
2
|
-
|
|
3
2
|
import SassVariable from './node/sass-variable.js';
|
|
4
3
|
const DELIM = 9;
|
|
5
|
-
const DOLLAR_SIGN =
|
|
4
|
+
const DOLLAR_SIGN = 0x00_24; // U+0024 DOLLAR SIGN ($)
|
|
6
5
|
const forked = CSSTree.fork(
|
|
7
6
|
// @ts-ignore
|
|
8
7
|
function (syntax, assign) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d-zero/csstree-scss-syntax",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.17",
|
|
4
4
|
"description": "SCSS syntax processor based on csstree",
|
|
5
5
|
"repository": "https://github.com/d-zero-dev/linters.git",
|
|
6
6
|
"author": "D-ZERO Co., Ltd.",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"css-tree": "2.3.1"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "0fbc8d97c4bdd7f01f3eeeb0620020e1baf6f712"
|
|
29
29
|
}
|