@navita/engine 0.0.11 → 0.0.12
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/index.cjs +0 -13
- package/index.mjs +0 -13
- package/package.json +1 -1
- package/printers/printFontFaces.cjs +0 -1
- package/printers/printFontFaces.mjs +0 -1
- package/printers/printKeyFrames.cjs +0 -1
- package/printers/printKeyFrames.mjs +0 -1
package/index.cjs
CHANGED
|
@@ -16,19 +16,6 @@ var printers_sortAtRules = require('./printers/sortAtRules.cjs');
|
|
|
16
16
|
var processStyles = require('./processStyles.cjs');
|
|
17
17
|
var wrappers_classList = require('./wrappers/classList.cjs');
|
|
18
18
|
var wrappers_static = require('./wrappers/static.cjs');
|
|
19
|
-
require('./helpers/declarationsToBlock.cjs');
|
|
20
|
-
require('./helpers/hypenateProperty.cjs');
|
|
21
|
-
require('source-map');
|
|
22
|
-
require('./helpers/getPropertyPriority.cjs');
|
|
23
|
-
require('sort-css-media-queries/lib/create-sort.js');
|
|
24
|
-
require('./helpers/generateCombinedAtRules.cjs');
|
|
25
|
-
require('./helpers/isMediaQuery.cjs');
|
|
26
|
-
require('./helpers/isNestedSelector.cjs');
|
|
27
|
-
require('./helpers/isSupportsQuery.cjs');
|
|
28
|
-
require('./helpers/normalizeCSSVarsProperty.cjs');
|
|
29
|
-
require('./helpers/normalizeNestedProperty.cjs');
|
|
30
|
-
require('./helpers/pixelifyProperties.cjs');
|
|
31
|
-
require('./helpers/transformContentProperty.cjs');
|
|
32
19
|
|
|
33
20
|
const defaultOptions = {
|
|
34
21
|
enableSourceMaps: false,
|
package/index.mjs
CHANGED
|
@@ -14,19 +14,6 @@ import { sortAtRules } from './printers/sortAtRules.mjs';
|
|
|
14
14
|
import { processStyles } from './processStyles.mjs';
|
|
15
15
|
import { ClassList } from './wrappers/classList.mjs';
|
|
16
16
|
import { Static } from './wrappers/static.mjs';
|
|
17
|
-
import './helpers/declarationsToBlock.mjs';
|
|
18
|
-
import './helpers/hypenateProperty.mjs';
|
|
19
|
-
import 'source-map';
|
|
20
|
-
import './helpers/getPropertyPriority.mjs';
|
|
21
|
-
import 'sort-css-media-queries/lib/create-sort.js';
|
|
22
|
-
import './helpers/generateCombinedAtRules.mjs';
|
|
23
|
-
import './helpers/isMediaQuery.mjs';
|
|
24
|
-
import './helpers/isNestedSelector.mjs';
|
|
25
|
-
import './helpers/isSupportsQuery.mjs';
|
|
26
|
-
import './helpers/normalizeCSSVarsProperty.mjs';
|
|
27
|
-
import './helpers/normalizeNestedProperty.mjs';
|
|
28
|
-
import './helpers/pixelifyProperties.mjs';
|
|
29
|
-
import './helpers/transformContentProperty.mjs';
|
|
30
17
|
|
|
31
18
|
const defaultOptions = {
|
|
32
19
|
enableSourceMaps: false,
|
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var helpers_declarationsToBlock = require('../helpers/declarationsToBlock.cjs');
|
|
4
|
-
require('../helpers/hypenateProperty.cjs');
|
|
5
4
|
|
|
6
5
|
// https://github.com/styletron/styletron/blob/master/packages/styletron-engine-atomic/src/css.ts#L48
|
|
7
6
|
function keyframesToBlock(keyframes) {
|