@cwcss/crosswind 0.2.1 → 0.2.2
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/cli.d.ts +1 -0
- package/dist/{bin/cli.js → cli.js} +1 -149
- package/package.json +1 -1
- /package/dist/{src/index.js → index.js} +0 -0
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -1880,7 +1880,7 @@ var prefix = getPrefix();
|
|
|
1880
1880
|
var color18 = __toESM(require_picocolors(), 1);
|
|
1881
1881
|
var import_picocolors19 = __toESM(require_picocolors(), 1);
|
|
1882
1882
|
// package.json
|
|
1883
|
-
var version = "0.2.
|
|
1883
|
+
var version = "0.2.2";
|
|
1884
1884
|
|
|
1885
1885
|
// src/parser.ts
|
|
1886
1886
|
var parseCache = new Map;
|
|
@@ -12703,143 +12703,6 @@ var init_src2 = __esm(() => {
|
|
|
12703
12703
|
init_src2();
|
|
12704
12704
|
|
|
12705
12705
|
// src/preflight.ts
|
|
12706
|
-
var modernNormalize = {
|
|
12707
|
-
getCSS: () => `
|
|
12708
|
-
/*
|
|
12709
|
-
! Modern Normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize
|
|
12710
|
-
*/
|
|
12711
|
-
|
|
12712
|
-
*,
|
|
12713
|
-
::before,
|
|
12714
|
-
::after {
|
|
12715
|
-
box-sizing: border-box;
|
|
12716
|
-
}
|
|
12717
|
-
|
|
12718
|
-
html {
|
|
12719
|
-
-webkit-text-size-adjust: 100%;
|
|
12720
|
-
tab-size: 4;
|
|
12721
|
-
}
|
|
12722
|
-
|
|
12723
|
-
body {
|
|
12724
|
-
margin: 0;
|
|
12725
|
-
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
|
|
12726
|
-
}
|
|
12727
|
-
|
|
12728
|
-
hr {
|
|
12729
|
-
height: 0;
|
|
12730
|
-
color: inherit;
|
|
12731
|
-
}
|
|
12732
|
-
|
|
12733
|
-
abbr[title] {
|
|
12734
|
-
text-decoration: underline dotted;
|
|
12735
|
-
}
|
|
12736
|
-
|
|
12737
|
-
b,
|
|
12738
|
-
strong {
|
|
12739
|
-
font-weight: bolder;
|
|
12740
|
-
}
|
|
12741
|
-
|
|
12742
|
-
code,
|
|
12743
|
-
kbd,
|
|
12744
|
-
samp,
|
|
12745
|
-
pre {
|
|
12746
|
-
font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
|
|
12747
|
-
font-size: 1em;
|
|
12748
|
-
}
|
|
12749
|
-
|
|
12750
|
-
small {
|
|
12751
|
-
font-size: 80%;
|
|
12752
|
-
}
|
|
12753
|
-
|
|
12754
|
-
sub,
|
|
12755
|
-
sup {
|
|
12756
|
-
font-size: 75%;
|
|
12757
|
-
line-height: 0;
|
|
12758
|
-
position: relative;
|
|
12759
|
-
vertical-align: baseline;
|
|
12760
|
-
}
|
|
12761
|
-
|
|
12762
|
-
sub {
|
|
12763
|
-
bottom: -0.25em;
|
|
12764
|
-
}
|
|
12765
|
-
|
|
12766
|
-
sup {
|
|
12767
|
-
top: -0.5em;
|
|
12768
|
-
}
|
|
12769
|
-
|
|
12770
|
-
table {
|
|
12771
|
-
text-indent: 0;
|
|
12772
|
-
border-color: inherit;
|
|
12773
|
-
}
|
|
12774
|
-
|
|
12775
|
-
button,
|
|
12776
|
-
input,
|
|
12777
|
-
optgroup,
|
|
12778
|
-
select,
|
|
12779
|
-
textarea {
|
|
12780
|
-
font-family: inherit;
|
|
12781
|
-
font-size: 100%;
|
|
12782
|
-
line-height: 1.15;
|
|
12783
|
-
margin: 0;
|
|
12784
|
-
}
|
|
12785
|
-
|
|
12786
|
-
button,
|
|
12787
|
-
select {
|
|
12788
|
-
text-transform: none;
|
|
12789
|
-
}
|
|
12790
|
-
|
|
12791
|
-
button,
|
|
12792
|
-
[type='button'],
|
|
12793
|
-
[type='reset'],
|
|
12794
|
-
[type='submit'] {
|
|
12795
|
-
-webkit-appearance: button;
|
|
12796
|
-
}
|
|
12797
|
-
|
|
12798
|
-
::-moz-focus-inner {
|
|
12799
|
-
border-style: none;
|
|
12800
|
-
padding: 0;
|
|
12801
|
-
}
|
|
12802
|
-
|
|
12803
|
-
:-moz-focusring {
|
|
12804
|
-
outline: 1px dotted ButtonText;
|
|
12805
|
-
}
|
|
12806
|
-
|
|
12807
|
-
:-moz-ui-invalid {
|
|
12808
|
-
box-shadow: none;
|
|
12809
|
-
}
|
|
12810
|
-
|
|
12811
|
-
legend {
|
|
12812
|
-
padding: 0;
|
|
12813
|
-
}
|
|
12814
|
-
|
|
12815
|
-
progress {
|
|
12816
|
-
vertical-align: baseline;
|
|
12817
|
-
}
|
|
12818
|
-
|
|
12819
|
-
::-webkit-inner-spin-button,
|
|
12820
|
-
::-webkit-outer-spin-button {
|
|
12821
|
-
height: auto;
|
|
12822
|
-
}
|
|
12823
|
-
|
|
12824
|
-
[type='search'] {
|
|
12825
|
-
-webkit-appearance: textfield;
|
|
12826
|
-
outline-offset: -2px;
|
|
12827
|
-
}
|
|
12828
|
-
|
|
12829
|
-
::-webkit-search-decoration {
|
|
12830
|
-
-webkit-appearance: none;
|
|
12831
|
-
}
|
|
12832
|
-
|
|
12833
|
-
::-webkit-file-upload-button {
|
|
12834
|
-
-webkit-appearance: button;
|
|
12835
|
-
font: inherit;
|
|
12836
|
-
}
|
|
12837
|
-
|
|
12838
|
-
summary {
|
|
12839
|
-
display: list-item;
|
|
12840
|
-
}
|
|
12841
|
-
`.trim()
|
|
12842
|
-
};
|
|
12843
12706
|
var tailwindPreflight = {
|
|
12844
12707
|
getCSS: () => `
|
|
12845
12708
|
/*
|
|
@@ -13606,17 +13469,6 @@ var defaultConfig2 = {
|
|
|
13606
13469
|
presets: [],
|
|
13607
13470
|
cssVariables: false
|
|
13608
13471
|
};
|
|
13609
|
-
var _config = null;
|
|
13610
|
-
async function getConfig() {
|
|
13611
|
-
if (!_config) {
|
|
13612
|
-
_config = await loadConfig({
|
|
13613
|
-
name: "crosswind",
|
|
13614
|
-
alias: "css",
|
|
13615
|
-
defaultConfig: defaultConfig2
|
|
13616
|
-
});
|
|
13617
|
-
}
|
|
13618
|
-
return _config;
|
|
13619
|
-
}
|
|
13620
13472
|
var config3 = defaultConfig2;
|
|
13621
13473
|
|
|
13622
13474
|
// bin/cli.ts
|
package/package.json
CHANGED
|
File without changes
|