Skip to content

Commit 2e93a1c

Browse files
committed
syntax update #92
1 parent a74085e commit 2e93a1c

File tree

124 files changed

+1475
-1121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+1475
-1121
lines changed

dist/index-umd-web.js

Lines changed: 258 additions & 232 deletions
Large diffs are not rendered by default.

dist/index.cjs

Lines changed: 258 additions & 232 deletions
Large diffs are not rendered by default.

dist/lib/ast/expand.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import '../parser/utils/config.js';
55
import { EnumToken } from './types.js';
66
import { walkValues } from './walk.js';
77
import { renderToken } from '../renderer/render.js';
8-
import '../renderer/color/utils/constants.js';
8+
import '../syntax/color/utils/constants.js';
99

1010
/**
1111
* expand nested css ast

dist/lib/ast/features/calc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { EnumToken } from '../types.js';
22
import { walkValues, WalkerValueEvent, WalkerOptionEnum } from '../walk.js';
33
import { evaluate } from '../math/expression.js';
44
import { renderToken } from '../../renderer/render.js';
5-
import '../../renderer/color/utils/constants.js';
5+
import '../../syntax/color/utils/constants.js';
66
import '../minify.js';
77
import '../../parser/parse.js';
88
import '../../parser/tokenize.js';

dist/lib/ast/features/inlinecssvariables.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { EnumToken } from '../types.js';
22
import { walkValues } from '../walk.js';
33
import { renderToken } from '../../renderer/render.js';
4-
import '../../renderer/color/utils/constants.js';
4+
import '../../syntax/color/utils/constants.js';
55
import { splitRule } from '../minify.js';
66
import '../../parser/parse.js';
77
import '../../parser/tokenize.js';

dist/lib/ast/features/prefix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import '../../parser/tokenize.js';
99
import '../../parser/utils/config.js';
1010
import { pseudoAliasMap } from '../../syntax/syntax.js';
1111
import { renderToken } from '../../renderer/render.js';
12-
import { funcLike } from '../../renderer/color/utils/constants.js';
12+
import { funcLike } from '../../syntax/color/utils/constants.js';
1313
import '../../validation/syntaxes/complex-selector.js';
1414
import { evaluateSyntax } from '../../validation/syntax.js';
1515

dist/lib/ast/features/shorthand.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import '../walk.js';
55
import '../../parser/parse.js';
66
import '../../parser/tokenize.js';
77
import '../../parser/utils/config.js';
8-
import '../../renderer/color/utils/constants.js';
8+
import '../../syntax/color/utils/constants.js';
99
import '../../renderer/sourcemap/lib/encode.js';
1010

1111
class ComputeShorthandFeature {

dist/lib/ast/features/transform.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import '../../parser/parse.js';
66
import '../../parser/tokenize.js';
77
import '../../parser/utils/config.js';
88
import { filterValues, renderToken } from '../../renderer/render.js';
9-
import '../../renderer/color/utils/constants.js';
9+
import '../../syntax/color/utils/constants.js';
1010
import { compute } from '../transform/compute.js';
1111
import { eqMatrix } from '../transform/minify.js';
1212

dist/lib/ast/math/expression.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { EnumToken } from '../types.js';
22
import { rem, compute } from './math.js';
33
import { reduceNumber } from '../../renderer/render.js';
4-
import '../../renderer/color/utils/constants.js';
4+
import '../../syntax/color/utils/constants.js';
55
import '../minify.js';
66
import '../walk.js';
77
import '../../parser/parse.js';

dist/lib/ast/math/math.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { EnumToken } from '../types.js';
22
import { reduceNumber } from '../../renderer/render.js';
3-
import '../../renderer/color/utils/constants.js';
3+
import '../../syntax/color/utils/constants.js';
44
import '../minify.js';
55
import '../walk.js';
66
import '../../parser/parse.js';

0 commit comments

Comments
 (0)