tailwindcss 0.0.0-insiders.fda68f7 → 0.0.0-oxide.6bf5e56

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 (195) hide show
  1. package/CHANGELOG.md +603 -2
  2. package/LICENSE +1 -2
  3. package/README.md +14 -6
  4. package/colors.d.ts +3 -0
  5. package/colors.js +2 -304
  6. package/defaultConfig.d.ts +3 -0
  7. package/defaultConfig.js +2 -4
  8. package/defaultTheme.d.ts +4 -0
  9. package/defaultTheme.js +2 -4
  10. package/lib/cli/build/deps.js +54 -0
  11. package/lib/cli/build/index.js +48 -0
  12. package/lib/cli/build/plugin.js +367 -0
  13. package/lib/cli/build/utils.js +78 -0
  14. package/lib/cli/build/watching.js +178 -0
  15. package/lib/cli/help/index.js +71 -0
  16. package/lib/cli/index.js +18 -0
  17. package/lib/cli/init/index.js +46 -0
  18. package/lib/cli/shared.js +13 -0
  19. package/lib/cli-peer-dependencies.js +22 -14
  20. package/lib/cli.js +217 -743
  21. package/lib/constants.js +41 -34
  22. package/lib/corePluginList.js +178 -5
  23. package/lib/corePlugins.js +3879 -2941
  24. package/lib/css/preflight.css +22 -9
  25. package/lib/featureFlags.js +61 -50
  26. package/lib/index.js +45 -28
  27. package/lib/lib/cacheInvalidation.js +90 -0
  28. package/lib/lib/collapseAdjacentRules.js +52 -36
  29. package/lib/lib/collapseDuplicateDeclarations.js +83 -0
  30. package/lib/lib/content.js +176 -0
  31. package/lib/lib/defaultExtractor.js +236 -0
  32. package/lib/lib/detectNesting.js +37 -0
  33. package/lib/lib/evaluateTailwindFunctions.js +203 -161
  34. package/lib/lib/expandApplyAtRules.js +502 -221
  35. package/lib/lib/expandTailwindAtRules.js +258 -243
  36. package/lib/lib/findAtConfigPath.js +44 -0
  37. package/lib/lib/generateRules.js +775 -320
  38. package/lib/lib/getModuleDependencies.js +44 -46
  39. package/lib/lib/normalizeTailwindDirectives.js +79 -60
  40. package/lib/lib/offsets.js +217 -0
  41. package/lib/lib/partitionApplyAtRules.js +56 -0
  42. package/lib/lib/regex.js +60 -0
  43. package/lib/lib/resolveDefaultsAtRules.js +150 -94
  44. package/lib/lib/setupContextUtils.js +1146 -599
  45. package/lib/lib/setupTrackingContext.js +129 -177
  46. package/lib/lib/sharedState.js +53 -21
  47. package/lib/lib/substituteScreenAtRules.js +26 -28
  48. package/{nesting → lib/postcss-plugins/nesting}/README.md +2 -2
  49. package/lib/postcss-plugins/nesting/index.js +19 -0
  50. package/lib/postcss-plugins/nesting/plugin.js +87 -0
  51. package/lib/processTailwindFeatures.js +58 -53
  52. package/lib/public/colors.js +331 -0
  53. package/lib/public/create-plugin.js +15 -0
  54. package/lib/public/default-config.js +16 -0
  55. package/lib/public/default-theme.js +16 -0
  56. package/lib/public/resolve-config.js +22 -0
  57. package/lib/util/bigSign.js +7 -6
  58. package/lib/util/buildMediaQuery.js +21 -32
  59. package/lib/util/cloneDeep.js +16 -14
  60. package/lib/util/cloneNodes.js +29 -15
  61. package/lib/util/color.js +90 -66
  62. package/lib/util/configurePlugins.js +17 -15
  63. package/lib/util/createPlugin.js +23 -26
  64. package/lib/util/createUtilityPlugin.js +46 -46
  65. package/lib/util/dataTypes.js +242 -0
  66. package/lib/util/defaults.js +20 -15
  67. package/lib/util/escapeClassName.js +18 -17
  68. package/lib/util/escapeCommas.js +7 -6
  69. package/lib/util/flattenColorPalette.js +13 -12
  70. package/lib/util/formatVariantSelector.js +285 -0
  71. package/lib/util/getAllConfigs.js +44 -18
  72. package/lib/util/hashConfig.js +15 -12
  73. package/lib/util/isKeyframeRule.js +7 -6
  74. package/lib/util/isPlainObject.js +11 -11
  75. package/lib/util/isSyntacticallyValidPropertyValue.js +72 -0
  76. package/lib/util/log.js +52 -33
  77. package/lib/util/nameClass.js +37 -26
  78. package/lib/util/negateValue.js +31 -17
  79. package/lib/util/normalizeConfig.js +281 -0
  80. package/lib/util/normalizeScreens.js +170 -0
  81. package/lib/util/parseAnimationValue.js +85 -54
  82. package/lib/util/parseBoxShadowValue.js +84 -0
  83. package/lib/util/parseDependency.js +41 -70
  84. package/lib/util/parseGlob.js +34 -0
  85. package/lib/util/parseObjectStyles.js +30 -24
  86. package/lib/util/pluginUtils.js +252 -287
  87. package/lib/util/prefixSelector.js +20 -20
  88. package/lib/util/removeAlphaVariables.js +29 -0
  89. package/lib/util/resolveConfig.js +221 -256
  90. package/lib/util/resolveConfigPath.js +43 -48
  91. package/lib/util/responsive.js +18 -14
  92. package/lib/util/splitAtTopLevelOnly.js +43 -0
  93. package/lib/util/tap.js +8 -7
  94. package/lib/util/toColorValue.js +7 -6
  95. package/lib/util/toPath.js +27 -8
  96. package/lib/util/transformThemeValue.js +67 -28
  97. package/lib/util/validateConfig.js +24 -0
  98. package/lib/util/validateFormalSyntax.js +24 -0
  99. package/lib/util/withAlphaVariable.js +67 -57
  100. package/nesting/index.js +2 -12
  101. package/package.json +60 -65
  102. package/peers/index.js +76445 -84221
  103. package/plugin.d.ts +11 -0
  104. package/plugin.js +1 -2
  105. package/resolveConfig.d.ts +12 -0
  106. package/resolveConfig.js +2 -7
  107. package/scripts/create-plugin-list.js +2 -2
  108. package/scripts/generate-types.js +105 -0
  109. package/scripts/release-channel.js +18 -0
  110. package/scripts/release-notes.js +21 -0
  111. package/scripts/type-utils.js +27 -0
  112. package/src/cli/build/deps.js +56 -0
  113. package/src/cli/build/index.js +49 -0
  114. package/src/cli/build/plugin.js +439 -0
  115. package/src/cli/build/utils.js +76 -0
  116. package/src/cli/build/watching.js +227 -0
  117. package/src/cli/help/index.js +70 -0
  118. package/src/cli/index.js +3 -0
  119. package/src/cli/init/index.js +50 -0
  120. package/src/cli/shared.js +6 -0
  121. package/src/cli-peer-dependencies.js +7 -1
  122. package/src/cli.js +50 -575
  123. package/src/corePluginList.js +1 -1
  124. package/src/corePlugins.js +2405 -1948
  125. package/src/css/preflight.css +22 -9
  126. package/src/featureFlags.js +26 -10
  127. package/src/index.js +19 -6
  128. package/src/lib/cacheInvalidation.js +52 -0
  129. package/src/lib/collapseAdjacentRules.js +21 -2
  130. package/src/lib/collapseDuplicateDeclarations.js +93 -0
  131. package/src/lib/content.js +212 -0
  132. package/src/lib/defaultExtractor.js +211 -0
  133. package/src/lib/detectNesting.js +39 -0
  134. package/src/lib/evaluateTailwindFunctions.js +84 -10
  135. package/src/lib/expandApplyAtRules.js +508 -153
  136. package/src/lib/expandTailwindAtRules.js +130 -104
  137. package/src/lib/findAtConfigPath.js +48 -0
  138. package/src/lib/generateRules.js +596 -70
  139. package/src/lib/normalizeTailwindDirectives.js +10 -3
  140. package/src/lib/offsets.js +270 -0
  141. package/src/lib/partitionApplyAtRules.js +52 -0
  142. package/src/lib/regex.js +74 -0
  143. package/src/lib/resolveDefaultsAtRules.js +105 -47
  144. package/src/lib/setupContextUtils.js +828 -196
  145. package/src/lib/setupTrackingContext.js +19 -54
  146. package/src/lib/sharedState.js +45 -7
  147. package/src/lib/substituteScreenAtRules.js +6 -3
  148. package/src/postcss-plugins/nesting/README.md +42 -0
  149. package/src/postcss-plugins/nesting/index.js +13 -0
  150. package/src/postcss-plugins/nesting/plugin.js +80 -0
  151. package/src/processTailwindFeatures.js +19 -2
  152. package/src/public/colors.js +300 -0
  153. package/src/public/create-plugin.js +2 -0
  154. package/src/public/default-config.js +4 -0
  155. package/src/public/default-theme.js +4 -0
  156. package/src/public/resolve-config.js +7 -0
  157. package/src/util/buildMediaQuery.js +14 -16
  158. package/src/util/cloneNodes.js +19 -2
  159. package/src/util/color.js +31 -14
  160. package/src/util/createUtilityPlugin.js +2 -11
  161. package/src/util/dataTypes.js +256 -0
  162. package/src/util/defaults.js +6 -0
  163. package/src/util/formatVariantSelector.js +319 -0
  164. package/src/util/getAllConfigs.js +19 -0
  165. package/src/util/isSyntacticallyValidPropertyValue.js +61 -0
  166. package/src/util/log.js +23 -22
  167. package/src/util/nameClass.js +14 -6
  168. package/src/util/negateValue.js +15 -5
  169. package/src/util/normalizeConfig.js +300 -0
  170. package/src/util/normalizeScreens.js +140 -0
  171. package/src/util/parseAnimationValue.js +7 -1
  172. package/src/util/parseBoxShadowValue.js +72 -0
  173. package/src/util/parseDependency.js +37 -38
  174. package/src/util/parseGlob.js +24 -0
  175. package/src/util/pluginUtils.js +216 -197
  176. package/src/util/prefixSelector.js +7 -8
  177. package/src/util/removeAlphaVariables.js +24 -0
  178. package/src/util/resolveConfig.js +86 -91
  179. package/src/util/splitAtTopLevelOnly.js +45 -0
  180. package/src/util/toPath.js +23 -1
  181. package/src/util/transformThemeValue.js +33 -8
  182. package/src/util/validateConfig.js +13 -0
  183. package/src/util/validateFormalSyntax.js +34 -0
  184. package/src/util/withAlphaVariable.js +14 -9
  185. package/stubs/defaultConfig.stub.js +186 -117
  186. package/stubs/simpleConfig.stub.js +1 -1
  187. package/types/config.d.ts +362 -0
  188. package/types/generated/.gitkeep +0 -0
  189. package/types/generated/colors.d.ts +276 -0
  190. package/types/generated/corePluginList.d.ts +1 -0
  191. package/types/generated/default-theme.d.ts +342 -0
  192. package/types/index.d.ts +7 -0
  193. package/lib/lib/setupWatchingContext.js +0 -331
  194. package/nesting/plugin.js +0 -41
  195. package/src/lib/setupWatchingContext.js +0 -306
@@ -1,60 +1,91 @@
1
1
  "use strict";
2
-
3
2
  Object.defineProperty(exports, "__esModule", {
4
- value: true
3
+ value: true
5
4
  });
6
- exports.default = parseAnimationValue;
7
- const DIRECTIONS = new Set(['normal', 'reverse', 'alternate', 'alternate-reverse']);
8
- const PLAY_STATES = new Set(['running', 'paused']);
9
- const FILL_MODES = new Set(['none', 'forwards', 'backwards', 'both']);
10
- const ITERATION_COUNTS = new Set(['infinite']);
11
- const TIMINGS = new Set(['linear', 'ease', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', 'step-end']);
12
- const TIMING_FNS = ['cubic-bezier', 'steps'];
13
- const COMMA = /\,(?![^(]*\))/g; // Comma separator that is not located between brackets. E.g.: `cubiz-bezier(a, b, c)` these don't count.
14
-
15
- const SPACE = /\ +(?![^(]*\))/g; // Similar to the one above, but with spaces instead.
16
-
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: ()=>parseAnimationValue
8
+ });
9
+ const DIRECTIONS = new Set([
10
+ "normal",
11
+ "reverse",
12
+ "alternate",
13
+ "alternate-reverse"
14
+ ]);
15
+ const PLAY_STATES = new Set([
16
+ "running",
17
+ "paused"
18
+ ]);
19
+ const FILL_MODES = new Set([
20
+ "none",
21
+ "forwards",
22
+ "backwards",
23
+ "both"
24
+ ]);
25
+ const ITERATION_COUNTS = new Set([
26
+ "infinite"
27
+ ]);
28
+ const TIMINGS = new Set([
29
+ "linear",
30
+ "ease",
31
+ "ease-in",
32
+ "ease-out",
33
+ "ease-in-out",
34
+ "step-start",
35
+ "step-end"
36
+ ]);
37
+ const TIMING_FNS = [
38
+ "cubic-bezier",
39
+ "steps"
40
+ ];
41
+ const COMMA = /\,(?![^(]*\))/g // Comma separator that is not located between brackets. E.g.: `cubiz-bezier(a, b, c)` these don't count.
42
+ ;
43
+ const SPACE = /\ +(?![^(]*\))/g // Similar to the one above, but with spaces instead.
44
+ ;
17
45
  const TIME = /^(-?[\d.]+m?s)$/;
18
46
  const DIGIT = /^(\d+)$/;
19
-
20
47
  function parseAnimationValue(input) {
21
- let animations = input.split(COMMA);
22
- return animations.map(animation => {
23
- let value = animation.trim();
24
- let result = {
25
- value
26
- };
27
- let parts = value.split(SPACE);
28
- let seen = new Set();
29
-
30
- for (let part of parts) {
31
- if (!seen.has('DIRECTIONS') && DIRECTIONS.has(part)) {
32
- result.direction = part;
33
- seen.add('DIRECTIONS');
34
- } else if (!seen.has('PLAY_STATES') && PLAY_STATES.has(part)) {
35
- result.playState = part;
36
- seen.add('PLAY_STATES');
37
- } else if (!seen.has('FILL_MODES') && FILL_MODES.has(part)) {
38
- result.fillMode = part;
39
- seen.add('FILL_MODES');
40
- } else if (!seen.has('ITERATION_COUNTS') && (ITERATION_COUNTS.has(part) || DIGIT.test(part))) {
41
- result.iterationCount = part;
42
- seen.add('ITERATION_COUNTS');
43
- } else if (!seen.has('TIMING_FUNCTION') && TIMINGS.has(part)) {
44
- result.timingFunction = part;
45
- seen.add('TIMING_FUNCTION');
46
- } else if (!seen.has('TIMING_FUNCTION') && TIMING_FNS.some(f => part.startsWith(`${f}(`))) {
47
- result.timingFunction = part;
48
- seen.add('TIMING_FUNCTION');
49
- } else if (!seen.has('DURATION') && TIME.test(part)) {
50
- result.duration = part;
51
- seen.add('DURATION');
52
- } else if (!seen.has('DELAY') && TIME.test(part)) {
53
- result.delay = part;
54
- seen.add('DELAY');
55
- } else result.name = part;
56
- }
57
-
58
- return result;
59
- });
60
- }
48
+ let animations = input.split(COMMA);
49
+ return animations.map((animation)=>{
50
+ let value = animation.trim();
51
+ let result = {
52
+ value
53
+ };
54
+ let parts = value.split(SPACE);
55
+ let seen = new Set();
56
+ for (let part of parts){
57
+ if (!seen.has("DIRECTIONS") && DIRECTIONS.has(part)) {
58
+ result.direction = part;
59
+ seen.add("DIRECTIONS");
60
+ } else if (!seen.has("PLAY_STATES") && PLAY_STATES.has(part)) {
61
+ result.playState = part;
62
+ seen.add("PLAY_STATES");
63
+ } else if (!seen.has("FILL_MODES") && FILL_MODES.has(part)) {
64
+ result.fillMode = part;
65
+ seen.add("FILL_MODES");
66
+ } else if (!seen.has("ITERATION_COUNTS") && (ITERATION_COUNTS.has(part) || DIGIT.test(part))) {
67
+ result.iterationCount = part;
68
+ seen.add("ITERATION_COUNTS");
69
+ } else if (!seen.has("TIMING_FUNCTION") && TIMINGS.has(part)) {
70
+ result.timingFunction = part;
71
+ seen.add("TIMING_FUNCTION");
72
+ } else if (!seen.has("TIMING_FUNCTION") && TIMING_FNS.some((f)=>part.startsWith(`${f}(`))) {
73
+ result.timingFunction = part;
74
+ seen.add("TIMING_FUNCTION");
75
+ } else if (!seen.has("DURATION") && TIME.test(part)) {
76
+ result.duration = part;
77
+ seen.add("DURATION");
78
+ } else if (!seen.has("DELAY") && TIME.test(part)) {
79
+ result.delay = part;
80
+ seen.add("DELAY");
81
+ } else if (!seen.has("NAME")) {
82
+ result.name = part;
83
+ seen.add("NAME");
84
+ } else {
85
+ if (!result.unknown) result.unknown = [];
86
+ result.unknown.push(part);
87
+ }
88
+ }
89
+ return result;
90
+ });
91
+ }
@@ -0,0 +1,84 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ parseBoxShadowValue: ()=>parseBoxShadowValue,
13
+ formatBoxShadowValue: ()=>formatBoxShadowValue
14
+ });
15
+ const _splitAtTopLevelOnly = require("./splitAtTopLevelOnly");
16
+ let KEYWORDS = new Set([
17
+ "inset",
18
+ "inherit",
19
+ "initial",
20
+ "revert",
21
+ "unset"
22
+ ]);
23
+ let SPACE = /\ +(?![^(]*\))/g // Similar to the one above, but with spaces instead.
24
+ ;
25
+ let LENGTH = /^-?(\d+|\.\d+)(.*?)$/g;
26
+ function parseBoxShadowValue(input) {
27
+ let shadows = (0, _splitAtTopLevelOnly.splitAtTopLevelOnly)(input, ",");
28
+ return shadows.map((shadow)=>{
29
+ let value = shadow.trim();
30
+ let result = {
31
+ raw: value
32
+ };
33
+ let parts = value.split(SPACE);
34
+ let seen = new Set();
35
+ for (let part of parts){
36
+ // Reset index, since the regex is stateful.
37
+ LENGTH.lastIndex = 0;
38
+ // Keyword
39
+ if (!seen.has("KEYWORD") && KEYWORDS.has(part)) {
40
+ result.keyword = part;
41
+ seen.add("KEYWORD");
42
+ } else if (LENGTH.test(part)) {
43
+ if (!seen.has("X")) {
44
+ result.x = part;
45
+ seen.add("X");
46
+ } else if (!seen.has("Y")) {
47
+ result.y = part;
48
+ seen.add("Y");
49
+ } else if (!seen.has("BLUR")) {
50
+ result.blur = part;
51
+ seen.add("BLUR");
52
+ } else if (!seen.has("SPREAD")) {
53
+ result.spread = part;
54
+ seen.add("SPREAD");
55
+ }
56
+ } else {
57
+ if (!result.color) {
58
+ result.color = part;
59
+ } else {
60
+ if (!result.unknown) result.unknown = [];
61
+ result.unknown.push(part);
62
+ }
63
+ }
64
+ }
65
+ // Check if valid
66
+ result.valid = result.x !== undefined && result.y !== undefined;
67
+ return result;
68
+ });
69
+ }
70
+ function formatBoxShadowValue(shadows) {
71
+ return shadows.map((shadow)=>{
72
+ if (!shadow.valid) {
73
+ return shadow.raw;
74
+ }
75
+ return [
76
+ shadow.keyword,
77
+ shadow.x,
78
+ shadow.y,
79
+ shadow.blur,
80
+ shadow.spread,
81
+ shadow.color
82
+ ].filter(Boolean).join(" ");
83
+ }).join(", ");
84
+ }
@@ -1,74 +1,45 @@
1
- "use strict";
2
-
1
+ // @ts-check
2
+ /**
3
+ * @typedef {{type: 'dependency', file: string} | {type: 'dir-dependency', dir: string, glob: string}} Dependency
4
+ */ /**
5
+ *
6
+ * @param {import('../lib/content.js').ContentPath} contentPath
7
+ * @returns {Dependency[]}
8
+ */ "use strict";
3
9
  Object.defineProperty(exports, "__esModule", {
4
- value: true
10
+ value: true
5
11
  });
6
- exports.default = parseDependency;
7
-
8
- var _isGlob = _interopRequireDefault(require("is-glob"));
9
-
10
- var _globParent = _interopRequireDefault(require("glob-parent"));
11
-
12
- var _path = _interopRequireDefault(require("path"));
13
-
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
-
16
- // Based on `glob-base`
17
- // https://github.com/micromatch/glob-base/blob/master/index.js
18
- function parseGlob(pattern) {
19
- let glob = pattern;
20
- let base = (0, _globParent.default)(pattern);
21
-
22
- if (base !== '.') {
23
- glob = pattern.substr(base.length);
24
-
25
- if (glob.charAt(0) === '/') {
26
- glob = glob.substr(1);
12
+ Object.defineProperty(exports, "default", {
13
+ enumerable: true,
14
+ get: ()=>parseDependency
15
+ });
16
+ function parseDependency(contentPath) {
17
+ if (contentPath.ignore) {
18
+ return [];
19
+ }
20
+ if (!contentPath.glob) {
21
+ return [
22
+ {
23
+ type: "dependency",
24
+ file: contentPath.base
25
+ }
26
+ ];
27
+ }
28
+ if (process.env.ROLLUP_WATCH === "true") {
29
+ // rollup-plugin-postcss does not support dir-dependency messages
30
+ // but directories can be watched in the same way as files
31
+ return [
32
+ {
33
+ type: "dependency",
34
+ file: contentPath.base
35
+ }
36
+ ];
27
37
  }
28
- }
29
-
30
- if (glob.substr(0, 2) === './') {
31
- glob = glob.substr(2);
32
- }
33
-
34
- if (glob.charAt(0) === '/') {
35
- glob = glob.substr(1);
36
- }
37
-
38
- return {
39
- base,
40
- glob
41
- };
38
+ return [
39
+ {
40
+ type: "dir-dependency",
41
+ dir: contentPath.base,
42
+ glob: contentPath.glob
43
+ }
44
+ ];
42
45
  }
43
-
44
- function parseDependency(normalizedFileOrGlob) {
45
- let message;
46
-
47
- if ((0, _isGlob.default)(normalizedFileOrGlob)) {
48
- let {
49
- base,
50
- glob
51
- } = parseGlob(normalizedFileOrGlob);
52
- message = {
53
- type: 'dir-dependency',
54
- dir: _path.default.resolve(base),
55
- glob
56
- };
57
- } else {
58
- message = {
59
- type: 'dependency',
60
- file: _path.default.resolve(normalizedFileOrGlob)
61
- };
62
- } // rollup-plugin-postcss does not support dir-dependency messages
63
- // but directories can be watched in the same way as files
64
-
65
-
66
- if (message.type === 'dir-dependency' && process.env.ROLLUP_WATCH === 'true') {
67
- message = {
68
- type: 'dependency',
69
- file: message.dir
70
- };
71
- }
72
-
73
- return message;
74
- }
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "parseGlob", {
6
+ enumerable: true,
7
+ get: ()=>parseGlob
8
+ });
9
+ const _globParent = /*#__PURE__*/ _interopRequireDefault(require("glob-parent"));
10
+ function _interopRequireDefault(obj) {
11
+ return obj && obj.__esModule ? obj : {
12
+ default: obj
13
+ };
14
+ }
15
+ function parseGlob(pattern) {
16
+ let glob = pattern;
17
+ let base = (0, _globParent.default)(pattern);
18
+ if (base !== ".") {
19
+ glob = pattern.substr(base.length);
20
+ if (glob.charAt(0) === "/") {
21
+ glob = glob.substr(1);
22
+ }
23
+ }
24
+ if (glob.substr(0, 2) === "./") {
25
+ glob = glob.substr(2);
26
+ }
27
+ if (glob.charAt(0) === "/") {
28
+ glob = glob.substr(1);
29
+ }
30
+ return {
31
+ base,
32
+ glob
33
+ };
34
+ }
@@ -1,28 +1,34 @@
1
1
  "use strict";
2
-
3
2
  Object.defineProperty(exports, "__esModule", {
4
- value: true
3
+ value: true
5
4
  });
6
- exports.default = parseObjectStyles;
7
-
8
- var _postcss = _interopRequireDefault(require("postcss"));
9
-
10
- var _postcssNested = _interopRequireDefault(require("postcss-nested"));
11
-
12
- var _postcssJs = _interopRequireDefault(require("postcss-js"));
13
-
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
-
5
+ Object.defineProperty(exports, "default", {
6
+ enumerable: true,
7
+ get: ()=>parseObjectStyles
8
+ });
9
+ const _postcss = /*#__PURE__*/ _interopRequireDefault(require("postcss"));
10
+ const _postcssNested = /*#__PURE__*/ _interopRequireDefault(require("postcss-nested"));
11
+ const _postcssJs = /*#__PURE__*/ _interopRequireDefault(require("postcss-js"));
12
+ function _interopRequireDefault(obj) {
13
+ return obj && obj.__esModule ? obj : {
14
+ default: obj
15
+ };
16
+ }
16
17
  function parseObjectStyles(styles) {
17
- if (!Array.isArray(styles)) {
18
- return parseObjectStyles([styles]);
19
- }
20
-
21
- return styles.flatMap(style => {
22
- return (0, _postcss.default)([(0, _postcssNested.default)({
23
- bubble: ['screen']
24
- })]).process(style, {
25
- parser: _postcssJs.default
26
- }).root.nodes;
27
- });
28
- }
18
+ if (!Array.isArray(styles)) {
19
+ return parseObjectStyles([
20
+ styles
21
+ ]);
22
+ }
23
+ return styles.flatMap((style)=>{
24
+ return (0, _postcss.default)([
25
+ (0, _postcssNested.default)({
26
+ bubble: [
27
+ "screen"
28
+ ]
29
+ })
30
+ ]).process(style, {
31
+ parser: _postcssJs.default
32
+ }).root.nodes;
33
+ });
34
+ }