Skip to content

Commit 822f38f

Browse files
committed
ad missing files
1 parent 1040f61 commit 822f38f

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

dist/lib/ast/features/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export { InlineCssVariables } from './inlinecssvariables.js';
2+
export { ComputeShorthand } from './shorthand.js';
3+
export { ComputeCalcExpression } from './calc.js';
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
class MinifyFeature {
2+
static get ordering() { return 10000; }
3+
register(options) { }
4+
run(ast, options = {}, parent, context) {
5+
}
6+
}
7+
8+
export { MinifyFeature };

0 commit comments

Comments
 (0)