weapp-tailwindcss 2.4.2 → 2.4.3
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/README.md +7 -7
- package/dist/cli.js +3 -3
- package/dist/cli.mjs +3 -3
- package/dist/gulp.js +3 -3
- package/dist/gulp.mjs +3 -3
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/dist/{options-3a20e9d4.js → options-2e71e6b3.js} +8 -9
- package/dist/{options-2a6f14b8.mjs → options-a2ba3653.mjs} +8 -9
- package/dist/postcss/index.d.ts +1 -1
- package/dist/postcss/shared.d.ts +1 -0
- package/dist/{postcss-b4e0e1ac.mjs → postcss-15e2ef2d.mjs} +1 -1
- package/dist/{postcss-e0e5739b.js → postcss-b8952a11.js} +1 -1
- package/dist/postcss.js +2 -2
- package/dist/postcss.mjs +2 -2
- package/dist/replace.js +2 -2
- package/dist/replace.mjs +3 -3
- package/dist/{shared-28d43730.js → shared-cdb5ee55.js} +11 -7
- package/dist/{shared-31001503.mjs → shared-fc50603a.mjs} +11 -7
- package/dist/vite.js +3 -3
- package/dist/vite.mjs +3 -3
- package/dist/webpack.js +3 -3
- package/dist/webpack.mjs +3 -3
- package/package.json +26 -25
package/README.md
CHANGED
|
@@ -20,16 +20,16 @@
|
|
|
20
20
|
</a>
|
|
21
21
|
<br> -->
|
|
22
22
|
|
|
23
|
-

|
|
24
24
|

|
|
25
25
|

|
|
26
|
-

|
|
27
|
+
[](https://github.com/sonofmagic/weapp-tailwindcss/actions/workflows/test.yml)
|
|
28
|
+
[](https://codecov.io/gh/sonofmagic/weapp-tailwindcss)
|
|
29
29
|
|
|
30
30
|
> `小程序` + `tailwindcss` 全方面解决方案
|
|
31
31
|
|
|
32
|
-
\[[国内部署的文档地址](https://weapp-tw.icebreaker.top)\] \| \[[备用Github Page](https://sonofmagic.github.io/weapp-tailwindcss
|
|
32
|
+
\[[国内部署的文档地址](https://weapp-tw.icebreaker.top)\] \| \[[备用Github Page](https://sonofmagic.github.io/weapp-tailwindcss/)\] \| \[[1.x文档]('./v1.md')\]
|
|
33
33
|
|
|
34
34
|
- [Tips](#tips)
|
|
35
35
|
- [特性](#特性)
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
|
|
123
123
|
#### 原生小程序开发模板
|
|
124
124
|
|
|
125
|
-
[weapp-tailwindcss-gulp-template(gulp打包)](https://github.com/sonofmagic/weapp-tailwindcss
|
|
125
|
+
[weapp-tailwindcss-gulp-template(gulp打包)](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo/gulp-app)
|
|
126
126
|
|
|
127
127
|
[weapp-native-mina-tailwindcss-template(webpack打包)](https://github.com/sonofmagic/weapp-native-mina-tailwindcss-template)
|
|
128
128
|
|
|
@@ -138,4 +138,4 @@
|
|
|
138
138
|
|
|
139
139
|
目前这个插件正在快速的开发中,如果遇到 `Bug` 或者想提出 `Issue`
|
|
140
140
|
|
|
141
|
-
[欢迎提交到此处](https://github.com/sonofmagic/weapp-tailwindcss
|
|
141
|
+
[欢迎提交到此处](https://github.com/sonofmagic/weapp-tailwindcss/issues)
|
package/dist/cli.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var options = require('./options-
|
|
3
|
+
var options = require('./options-2e71e6b3.js');
|
|
4
4
|
require('micromatch');
|
|
5
5
|
require('@babel/types');
|
|
6
6
|
require('@babel/generator');
|
|
7
7
|
require('@babel/parser');
|
|
8
8
|
require('@babel/traverse');
|
|
9
9
|
require('./replace.js');
|
|
10
|
-
require('./shared-
|
|
10
|
+
require('./shared-cdb5ee55.js');
|
|
11
11
|
require('postcss');
|
|
12
|
-
require('./postcss-
|
|
12
|
+
require('./postcss-b8952a11.js');
|
|
13
13
|
require('postcss-selector-parser');
|
|
14
14
|
require('@csstools/postcss-is-pseudo-class');
|
|
15
15
|
require('node:path');
|
package/dist/cli.mjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { g as getOptions, c as createPatch } from './options-
|
|
1
|
+
import { g as getOptions, c as createPatch } from './options-a2ba3653.mjs';
|
|
2
2
|
import 'micromatch';
|
|
3
3
|
import '@babel/types';
|
|
4
4
|
import '@babel/generator';
|
|
5
5
|
import '@babel/parser';
|
|
6
6
|
import '@babel/traverse';
|
|
7
7
|
import './replace.mjs';
|
|
8
|
-
import './shared-
|
|
8
|
+
import './shared-fc50603a.mjs';
|
|
9
9
|
import 'postcss';
|
|
10
|
-
import './postcss-
|
|
10
|
+
import './postcss-15e2ef2d.mjs';
|
|
11
11
|
import 'postcss-selector-parser';
|
|
12
12
|
import '@csstools/postcss-is-pseudo-class';
|
|
13
13
|
import 'node:path';
|
package/dist/gulp.js
CHANGED
|
@@ -3,16 +3,16 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var stream = require('node:stream');
|
|
6
|
-
var options = require('./options-
|
|
6
|
+
var options = require('./options-2e71e6b3.js');
|
|
7
7
|
require('micromatch');
|
|
8
8
|
require('@babel/types');
|
|
9
9
|
require('@babel/generator');
|
|
10
10
|
require('@babel/parser');
|
|
11
11
|
require('@babel/traverse');
|
|
12
12
|
require('./replace.js');
|
|
13
|
-
require('./shared-
|
|
13
|
+
require('./shared-cdb5ee55.js');
|
|
14
14
|
require('postcss');
|
|
15
|
-
require('./postcss-
|
|
15
|
+
require('./postcss-b8952a11.js');
|
|
16
16
|
require('postcss-selector-parser');
|
|
17
17
|
require('@csstools/postcss-is-pseudo-class');
|
|
18
18
|
require('node:path');
|
package/dist/gulp.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import stream from 'node:stream';
|
|
2
|
-
import { g as getOptions, a as createTailwindcssPatcher } from './options-
|
|
2
|
+
import { g as getOptions, a as createTailwindcssPatcher } from './options-a2ba3653.mjs';
|
|
3
3
|
import 'micromatch';
|
|
4
4
|
import '@babel/types';
|
|
5
5
|
import '@babel/generator';
|
|
6
6
|
import '@babel/parser';
|
|
7
7
|
import '@babel/traverse';
|
|
8
8
|
import './replace.mjs';
|
|
9
|
-
import './shared-
|
|
9
|
+
import './shared-fc50603a.mjs';
|
|
10
10
|
import 'postcss';
|
|
11
|
-
import './postcss-
|
|
11
|
+
import './postcss-15e2ef2d.mjs';
|
|
12
12
|
import 'postcss-selector-parser';
|
|
13
13
|
import '@csstools/postcss-is-pseudo-class';
|
|
14
14
|
import 'node:path';
|
package/dist/index.js
CHANGED
|
@@ -5,16 +5,16 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var webpack = require('./webpack.js');
|
|
6
6
|
var vite = require('./vite.js');
|
|
7
7
|
var gulp = require('./gulp.js');
|
|
8
|
-
require('./options-
|
|
8
|
+
require('./options-2e71e6b3.js');
|
|
9
9
|
require('micromatch');
|
|
10
10
|
require('@babel/types');
|
|
11
11
|
require('@babel/generator');
|
|
12
12
|
require('@babel/parser');
|
|
13
13
|
require('@babel/traverse');
|
|
14
14
|
require('./replace.js');
|
|
15
|
-
require('./shared-
|
|
15
|
+
require('./shared-cdb5ee55.js');
|
|
16
16
|
require('postcss');
|
|
17
|
-
require('./postcss-
|
|
17
|
+
require('./postcss-b8952a11.js');
|
|
18
18
|
require('postcss-selector-parser');
|
|
19
19
|
require('@csstools/postcss-is-pseudo-class');
|
|
20
20
|
require('node:path');
|
package/dist/index.mjs
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export { UnifiedWebpackPluginV5 } from './webpack.mjs';
|
|
2
2
|
export { UnifiedViteWeappTailwindcssPlugin } from './vite.mjs';
|
|
3
3
|
export { createPlugins } from './gulp.mjs';
|
|
4
|
-
import './options-
|
|
4
|
+
import './options-a2ba3653.mjs';
|
|
5
5
|
import 'micromatch';
|
|
6
6
|
import '@babel/types';
|
|
7
7
|
import '@babel/generator';
|
|
8
8
|
import '@babel/parser';
|
|
9
9
|
import '@babel/traverse';
|
|
10
10
|
import './replace.mjs';
|
|
11
|
-
import './shared-
|
|
11
|
+
import './shared-fc50603a.mjs';
|
|
12
12
|
import 'postcss';
|
|
13
|
-
import './postcss-
|
|
13
|
+
import './postcss-15e2ef2d.mjs';
|
|
14
14
|
import 'postcss-selector-parser';
|
|
15
15
|
import '@csstools/postcss-is-pseudo-class';
|
|
16
16
|
import 'node:path';
|
|
@@ -6,9 +6,9 @@ var generate = require('@babel/generator');
|
|
|
6
6
|
var parser = require('@babel/parser');
|
|
7
7
|
var traverse = require('@babel/traverse');
|
|
8
8
|
var replace = require('./replace.js');
|
|
9
|
-
var shared = require('./shared-
|
|
9
|
+
var shared = require('./shared-cdb5ee55.js');
|
|
10
10
|
var postcss = require('postcss');
|
|
11
|
-
var postcss$1 = require('./postcss-
|
|
11
|
+
var postcss$1 = require('./postcss-b8952a11.js');
|
|
12
12
|
var postcssIsPseudoClass = require('@csstools/postcss-is-pseudo-class');
|
|
13
13
|
var path = require('node:path');
|
|
14
14
|
var fs = require('node:fs');
|
|
@@ -447,10 +447,7 @@ function templeteReplacer(original, options = {}) {
|
|
|
447
447
|
}));
|
|
448
448
|
}
|
|
449
449
|
}
|
|
450
|
-
return resultArray
|
|
451
|
-
.filter(Boolean)
|
|
452
|
-
.join('')
|
|
453
|
-
.trim();
|
|
450
|
+
return resultArray.filter(Boolean).join('').trim();
|
|
454
451
|
}
|
|
455
452
|
else {
|
|
456
453
|
return replace.replaceJs(original, {
|
|
@@ -730,14 +727,16 @@ function getOptions(options = {}) {
|
|
|
730
727
|
const { cssPreflight, customRuleCallback, cssPreflightRange, replaceUniversalSelectorWith, customAttributes, customReplaceDictionary, supportCustomLengthUnitsPatch, arbitraryValues } = result;
|
|
731
728
|
result.escapeMap = customReplaceDictionary;
|
|
732
729
|
const cssInjectPreflight = createInjectPreflight(cssPreflight);
|
|
733
|
-
const customAttributesEntities = isMap(options.customAttributes)
|
|
730
|
+
const customAttributesEntities = isMap(options.customAttributes)
|
|
731
|
+
? [...options.customAttributes.entries()]
|
|
732
|
+
: Object.entries(customAttributes);
|
|
734
733
|
const { escapeMap, minifiedJs } = result;
|
|
735
734
|
const { initMangle, mangleContext, setMangleRuntimeSet } = useMangleStore();
|
|
736
735
|
initMangle(options.mangle);
|
|
737
736
|
result.templeteHandler = createTempleteHandler({
|
|
738
737
|
customAttributesEntities,
|
|
739
738
|
escapeMap,
|
|
740
|
-
mangleContext
|
|
739
|
+
mangleContext
|
|
741
740
|
});
|
|
742
741
|
result.styleHandler = createStyleHandler({
|
|
743
742
|
cssInjectPreflight,
|
|
@@ -745,7 +744,7 @@ function getOptions(options = {}) {
|
|
|
745
744
|
cssPreflightRange,
|
|
746
745
|
replaceUniversalSelectorWith,
|
|
747
746
|
escapeMap,
|
|
748
|
-
mangleContext
|
|
747
|
+
mangleContext
|
|
749
748
|
});
|
|
750
749
|
result.jsHandler = createjsHandler({
|
|
751
750
|
minifiedJs,
|
|
@@ -4,9 +4,9 @@ import generate from '@babel/generator';
|
|
|
4
4
|
import { parse, parseExpression } from '@babel/parser';
|
|
5
5
|
import traverse from '@babel/traverse';
|
|
6
6
|
import { replaceJs as replaceWxml } from './replace.mjs';
|
|
7
|
-
import { S as SimpleMappingChars2String, M as MappingChars2String } from './shared-
|
|
7
|
+
import { S as SimpleMappingChars2String, M as MappingChars2String } from './shared-fc50603a.mjs';
|
|
8
8
|
import postcss from 'postcss';
|
|
9
|
-
import { p as postcssWeappTailwindcss } from './postcss-
|
|
9
|
+
import { p as postcssWeappTailwindcss } from './postcss-15e2ef2d.mjs';
|
|
10
10
|
import postcssIsPseudoClass from '@csstools/postcss-is-pseudo-class';
|
|
11
11
|
import path from 'node:path';
|
|
12
12
|
import fs from 'node:fs';
|
|
@@ -417,10 +417,7 @@ function templeteReplacer(original, options = {}) {
|
|
|
417
417
|
}));
|
|
418
418
|
}
|
|
419
419
|
}
|
|
420
|
-
return resultArray
|
|
421
|
-
.filter(Boolean)
|
|
422
|
-
.join('')
|
|
423
|
-
.trim();
|
|
420
|
+
return resultArray.filter(Boolean).join('').trim();
|
|
424
421
|
}
|
|
425
422
|
else {
|
|
426
423
|
return replaceWxml(original, {
|
|
@@ -700,14 +697,16 @@ function getOptions(options = {}) {
|
|
|
700
697
|
const { cssPreflight, customRuleCallback, cssPreflightRange, replaceUniversalSelectorWith, customAttributes, customReplaceDictionary, supportCustomLengthUnitsPatch, arbitraryValues } = result;
|
|
701
698
|
result.escapeMap = customReplaceDictionary;
|
|
702
699
|
const cssInjectPreflight = createInjectPreflight(cssPreflight);
|
|
703
|
-
const customAttributesEntities = isMap(options.customAttributes)
|
|
700
|
+
const customAttributesEntities = isMap(options.customAttributes)
|
|
701
|
+
? [...options.customAttributes.entries()]
|
|
702
|
+
: Object.entries(customAttributes);
|
|
704
703
|
const { escapeMap, minifiedJs } = result;
|
|
705
704
|
const { initMangle, mangleContext, setMangleRuntimeSet } = useMangleStore();
|
|
706
705
|
initMangle(options.mangle);
|
|
707
706
|
result.templeteHandler = createTempleteHandler({
|
|
708
707
|
customAttributesEntities,
|
|
709
708
|
escapeMap,
|
|
710
|
-
mangleContext
|
|
709
|
+
mangleContext
|
|
711
710
|
});
|
|
712
711
|
result.styleHandler = createStyleHandler({
|
|
713
712
|
cssInjectPreflight,
|
|
@@ -715,7 +714,7 @@ function getOptions(options = {}) {
|
|
|
715
714
|
cssPreflightRange,
|
|
716
715
|
replaceUniversalSelectorWith,
|
|
717
716
|
escapeMap,
|
|
718
|
-
mangleContext
|
|
717
|
+
mangleContext
|
|
719
718
|
});
|
|
720
719
|
result.jsHandler = createjsHandler({
|
|
721
720
|
minifiedJs,
|
package/dist/postcss/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { IStyleHandlerOptions } from "../types";
|
|
2
2
|
export declare function styleHandler(rawSource: string, options: IStyleHandlerOptions): string;
|
|
3
|
-
export declare function createStyleHandler(options: Partial<IStyleHandlerOptions>): (rawSource: string, opt
|
|
3
|
+
export declare function createStyleHandler(options: Partial<IStyleHandlerOptions>): (rawSource: string, opt?: Partial<IStyleHandlerOptions>) => string;
|
package/dist/postcss/shared.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import selectorParser from 'postcss-selector-parser';
|
|
2
|
-
import { i as internalCssSelectorReplacer } from './shared-
|
|
2
|
+
import { i as internalCssSelectorReplacer } from './shared-fc50603a.mjs';
|
|
3
3
|
import { Rule, Declaration } from 'postcss';
|
|
4
4
|
import '@csstools/postcss-is-pseudo-class';
|
|
5
5
|
|
package/dist/postcss.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var postcss = require('./postcss-
|
|
5
|
+
var postcss = require('./postcss-b8952a11.js');
|
|
6
6
|
var postcssIsPseudoClass = require('@csstools/postcss-is-pseudo-class');
|
|
7
7
|
require('postcss-selector-parser');
|
|
8
|
-
require('./shared-
|
|
8
|
+
require('./shared-cdb5ee55.js');
|
|
9
9
|
require('postcss');
|
|
10
10
|
|
|
11
11
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
package/dist/postcss.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { p as postcssWeappTailwindcss } from './postcss-
|
|
1
|
+
export { p as postcssWeappTailwindcss } from './postcss-15e2ef2d.mjs';
|
|
2
2
|
export { default as postcssIsPseudoClass } from '@csstools/postcss-is-pseudo-class';
|
|
3
3
|
import 'postcss-selector-parser';
|
|
4
|
-
import './shared-
|
|
4
|
+
import './shared-fc50603a.mjs';
|
|
5
5
|
import 'postcss';
|
package/dist/replace.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var shared = require('./shared-
|
|
5
|
+
var shared = require('./shared-cdb5ee55.js');
|
|
6
6
|
|
|
7
7
|
function replaceWxml(original, options = {
|
|
8
8
|
keepEOL: false,
|
|
9
|
-
escapeMap: shared.SimpleMappingChars2String
|
|
9
|
+
escapeMap: shared.SimpleMappingChars2String
|
|
10
10
|
}) {
|
|
11
11
|
const { keepEOL, escapeMap, mangleContext } = options;
|
|
12
12
|
let res = original;
|
package/dist/replace.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { e as escape, S as SimpleMappingChars2String } from './shared-
|
|
2
|
-
export { M as MappingChars2String, b as MappingChars2StringEntries, a as SYMBOL_TABLE, c as SimpleMappingChars2StringEntries, i as replaceCss } from './shared-
|
|
1
|
+
import { e as escape, S as SimpleMappingChars2String } from './shared-fc50603a.mjs';
|
|
2
|
+
export { M as MappingChars2String, b as MappingChars2StringEntries, a as SYMBOL_TABLE, c as SimpleMappingChars2StringEntries, i as replaceCss } from './shared-fc50603a.mjs';
|
|
3
3
|
|
|
4
4
|
function replaceWxml(original, options = {
|
|
5
5
|
keepEOL: false,
|
|
6
|
-
escapeMap: SimpleMappingChars2String
|
|
6
|
+
escapeMap: SimpleMappingChars2String
|
|
7
7
|
}) {
|
|
8
8
|
const { keepEOL, escapeMap, mangleContext } = options;
|
|
9
9
|
let res = original;
|
|
@@ -113,14 +113,18 @@ function escape(selectors, options = {
|
|
|
113
113
|
for (let i = 0; i < sb.length; i++) {
|
|
114
114
|
const char = sb[i];
|
|
115
115
|
const code = char.codePointAt(0);
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
116
|
+
const isCodeExisted = code !== undefined;
|
|
117
|
+
const hit = map[char];
|
|
118
|
+
if (isCodeExisted) {
|
|
119
|
+
if (code > MAX_ASCII_CHAR_CODE) {
|
|
120
|
+
sb[i] = 'u' + Number(code).toString(16);
|
|
121
|
+
}
|
|
122
|
+
else if (hit) {
|
|
122
123
|
sb[i] = hit;
|
|
123
124
|
}
|
|
125
|
+
else if (i === 0 && code >= 48 && code <= 57) {
|
|
126
|
+
sb[i] = '_' + char;
|
|
127
|
+
}
|
|
124
128
|
}
|
|
125
129
|
}
|
|
126
130
|
const res = sb.join('');
|
|
@@ -128,7 +132,7 @@ function escape(selectors, options = {
|
|
|
128
132
|
}
|
|
129
133
|
|
|
130
134
|
function internalCssSelectorReplacer(selectors, options = {
|
|
131
|
-
escapeMap: SimpleMappingChars2String
|
|
135
|
+
escapeMap: SimpleMappingChars2String
|
|
132
136
|
}) {
|
|
133
137
|
const { mangleContext, escapeMap } = options;
|
|
134
138
|
if (mangleContext) {
|
|
@@ -111,14 +111,18 @@ function escape(selectors, options = {
|
|
|
111
111
|
for (let i = 0; i < sb.length; i++) {
|
|
112
112
|
const char = sb[i];
|
|
113
113
|
const code = char.codePointAt(0);
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
114
|
+
const isCodeExisted = code !== undefined;
|
|
115
|
+
const hit = map[char];
|
|
116
|
+
if (isCodeExisted) {
|
|
117
|
+
if (code > MAX_ASCII_CHAR_CODE) {
|
|
118
|
+
sb[i] = 'u' + Number(code).toString(16);
|
|
119
|
+
}
|
|
120
|
+
else if (hit) {
|
|
120
121
|
sb[i] = hit;
|
|
121
122
|
}
|
|
123
|
+
else if (i === 0 && code >= 48 && code <= 57) {
|
|
124
|
+
sb[i] = '_' + char;
|
|
125
|
+
}
|
|
122
126
|
}
|
|
123
127
|
}
|
|
124
128
|
const res = sb.join('');
|
|
@@ -126,7 +130,7 @@ function escape(selectors, options = {
|
|
|
126
130
|
}
|
|
127
131
|
|
|
128
132
|
function internalCssSelectorReplacer(selectors, options = {
|
|
129
|
-
escapeMap: SimpleMappingChars2String
|
|
133
|
+
escapeMap: SimpleMappingChars2String
|
|
130
134
|
}) {
|
|
131
135
|
const { mangleContext, escapeMap } = options;
|
|
132
136
|
if (mangleContext) {
|
package/dist/vite.js
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var options = require('./options-
|
|
6
|
-
var postcss = require('./postcss-
|
|
5
|
+
var options = require('./options-2e71e6b3.js');
|
|
6
|
+
var postcss = require('./postcss-b8952a11.js');
|
|
7
7
|
require('micromatch');
|
|
8
8
|
require('@babel/types');
|
|
9
9
|
require('@babel/generator');
|
|
10
10
|
require('@babel/parser');
|
|
11
11
|
require('@babel/traverse');
|
|
12
12
|
require('./replace.js');
|
|
13
|
-
require('./shared-
|
|
13
|
+
require('./shared-cdb5ee55.js');
|
|
14
14
|
require('postcss');
|
|
15
15
|
require('@csstools/postcss-is-pseudo-class');
|
|
16
16
|
require('node:path');
|
package/dist/vite.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { g as getOptions, a as createTailwindcssPatcher, b as getGroupedEntries } from './options-
|
|
2
|
-
import { v as vitePluginName } from './postcss-
|
|
1
|
+
import { g as getOptions, a as createTailwindcssPatcher, b as getGroupedEntries } from './options-a2ba3653.mjs';
|
|
2
|
+
import { v as vitePluginName } from './postcss-15e2ef2d.mjs';
|
|
3
3
|
import 'micromatch';
|
|
4
4
|
import '@babel/types';
|
|
5
5
|
import '@babel/generator';
|
|
6
6
|
import '@babel/parser';
|
|
7
7
|
import '@babel/traverse';
|
|
8
8
|
import './replace.mjs';
|
|
9
|
-
import './shared-
|
|
9
|
+
import './shared-fc50603a.mjs';
|
|
10
10
|
import 'postcss';
|
|
11
11
|
import '@csstools/postcss-is-pseudo-class';
|
|
12
12
|
import 'node:path';
|
package/dist/webpack.js
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var options = require('./options-
|
|
6
|
-
var postcss = require('./postcss-
|
|
5
|
+
var options = require('./options-2e71e6b3.js');
|
|
6
|
+
var postcss = require('./postcss-b8952a11.js');
|
|
7
7
|
require('micromatch');
|
|
8
8
|
require('@babel/types');
|
|
9
9
|
require('@babel/generator');
|
|
10
10
|
require('@babel/parser');
|
|
11
11
|
require('@babel/traverse');
|
|
12
12
|
require('./replace.js');
|
|
13
|
-
require('./shared-
|
|
13
|
+
require('./shared-cdb5ee55.js');
|
|
14
14
|
require('postcss');
|
|
15
15
|
require('@csstools/postcss-is-pseudo-class');
|
|
16
16
|
require('node:path');
|
package/dist/webpack.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { g as getOptions, a as createTailwindcssPatcher, b as getGroupedEntries } from './options-
|
|
2
|
-
import { a as pluginName, N as NS } from './postcss-
|
|
1
|
+
import { g as getOptions, a as createTailwindcssPatcher, b as getGroupedEntries } from './options-a2ba3653.mjs';
|
|
2
|
+
import { a as pluginName, N as NS } from './postcss-15e2ef2d.mjs';
|
|
3
3
|
import 'micromatch';
|
|
4
4
|
import '@babel/types';
|
|
5
5
|
import '@babel/generator';
|
|
6
6
|
import '@babel/parser';
|
|
7
7
|
import '@babel/traverse';
|
|
8
8
|
import './replace.mjs';
|
|
9
|
-
import './shared-
|
|
9
|
+
import './shared-fc50603a.mjs';
|
|
10
10
|
import 'postcss';
|
|
11
11
|
import '@csstools/postcss-is-pseudo-class';
|
|
12
12
|
import 'node:path';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "weapp-tailwindcss",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.3",
|
|
4
4
|
"description": "把tailwindcss jit引擎,带给小程序开发者们\nbring tailwindcss jit engine to our miniprogram developers!",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"sideEffects": false,
|
|
49
49
|
"repository": {
|
|
50
50
|
"type": "git",
|
|
51
|
-
"url": "git+https://github.com/sonofmagic/weapp-tailwindcss
|
|
51
|
+
"url": "git+https://github.com/sonofmagic/weapp-tailwindcss.git"
|
|
52
52
|
},
|
|
53
53
|
"files": [
|
|
54
54
|
"bin",
|
|
@@ -100,37 +100,38 @@
|
|
|
100
100
|
"@icebreakers/cli": "^0.1.1",
|
|
101
101
|
"@icebreakers/readme": "0.1.0",
|
|
102
102
|
"@rollup/plugin-alias": "^5.0.0",
|
|
103
|
-
"@rollup/plugin-commonjs": "^25.0.
|
|
103
|
+
"@rollup/plugin-commonjs": "^25.0.1",
|
|
104
104
|
"@rollup/plugin-json": "^6.0.0",
|
|
105
|
-
"@rollup/plugin-node-resolve": "^15.0
|
|
105
|
+
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
106
106
|
"@rollup/plugin-terser": "^0.4.3",
|
|
107
107
|
"@rollup/plugin-typescript": "^11.1.1",
|
|
108
108
|
"@tsconfig/recommended": "^1.0.2",
|
|
109
109
|
"@types/babel__generator": "^7.6.4",
|
|
110
110
|
"@types/babel__traverse": "^7.18.5",
|
|
111
111
|
"@types/fs-extra": "^11.0.1",
|
|
112
|
-
"@types/gulp": "^4.0.
|
|
112
|
+
"@types/gulp": "^4.0.11",
|
|
113
113
|
"@types/gulp-postcss": "^8.0.3",
|
|
114
|
-
"@types/jest": "^29.5.
|
|
115
|
-
"@types/lodash": "^4.14.
|
|
114
|
+
"@types/jest": "^29.5.2",
|
|
115
|
+
"@types/lodash": "^4.14.195",
|
|
116
116
|
"@types/micromatch": "^4.0.2",
|
|
117
|
-
"@types/node": "^20.2.
|
|
118
|
-
"@types/react": "^18.2.6",
|
|
117
|
+
"@types/node": "^20.2.6",
|
|
119
118
|
"@types/semver": "^7.5.0",
|
|
120
119
|
"@types/vinyl": "^2.0.7",
|
|
121
120
|
"@types/webpack": "^5.28.1",
|
|
122
121
|
"@types/webpack-sources": "^3.2.0",
|
|
123
|
-
"@vitest/coverage-
|
|
122
|
+
"@vitest/coverage-v8": "^0.32.0",
|
|
124
123
|
"autoprefixer": "^10.4.14",
|
|
125
124
|
"babel-loader": "^9.1.2",
|
|
126
|
-
"bumpp": "^9.1.
|
|
125
|
+
"bumpp": "^9.1.1",
|
|
127
126
|
"chalk": "4.1.2",
|
|
128
127
|
"cross-env": "^7.0.3",
|
|
129
|
-
"css-loader": "^6.
|
|
128
|
+
"css-loader": "^6.8.1",
|
|
130
129
|
"defu": "6.1.2",
|
|
131
130
|
"del": "^6.1.1",
|
|
132
|
-
"eslint": "8.
|
|
131
|
+
"eslint": "8.42.0",
|
|
133
132
|
"eslint-config-icebreaker": "^1.1.0",
|
|
133
|
+
"eslint-config-prettier": "^8.8.0",
|
|
134
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
134
135
|
"execa": "5",
|
|
135
136
|
"fast-glob": "^3.2.12",
|
|
136
137
|
"fs-extra": "^11.1.1",
|
|
@@ -139,15 +140,15 @@
|
|
|
139
140
|
"html-loader": "^4.2.0",
|
|
140
141
|
"jest": "^29.5.0",
|
|
141
142
|
"lodash": "^4.17.21",
|
|
142
|
-
"memfs": "^3.5.
|
|
143
|
+
"memfs": "^3.5.3",
|
|
143
144
|
"mini-css-extract-plugin": "^2.7.6",
|
|
144
145
|
"miniprogram-automator": "^0.12.0",
|
|
145
146
|
"pkg-types": "^1.0.3",
|
|
146
147
|
"postcss-load-config": "^4.0.1",
|
|
147
|
-
"postcss-loader": "^7.3.
|
|
148
|
+
"postcss-loader": "^7.3.3",
|
|
148
149
|
"postcss-rem-to-responsive-pixel": "^5.1.3",
|
|
149
150
|
"prettier": "^2.8.8",
|
|
150
|
-
"rollup": "^3.
|
|
151
|
+
"rollup": "^3.24.1",
|
|
151
152
|
"rollup-plugin-visualizer": "^5.9.0",
|
|
152
153
|
"simple-functional-loader": "^1.2.1",
|
|
153
154
|
"style-loader": "^3.3.3",
|
|
@@ -157,15 +158,15 @@
|
|
|
157
158
|
"ts-node": "^10.9.1",
|
|
158
159
|
"ts-patch": "^2.1.0",
|
|
159
160
|
"tsd": "^0.28.1",
|
|
160
|
-
"tslib": "^2.5.
|
|
161
|
+
"tslib": "^2.5.3",
|
|
161
162
|
"ttypescript": "^1.5.15",
|
|
162
163
|
"typescript": "^4.9.5",
|
|
163
164
|
"typescript-transform-paths": "^3.4.6",
|
|
164
165
|
"vinyl": "^3.0.0",
|
|
165
|
-
"vite": "^4.3.
|
|
166
|
-
"vitest": "^0.
|
|
166
|
+
"vite": "^4.3.9",
|
|
167
|
+
"vitest": "^0.32.0",
|
|
167
168
|
"weapp-tailwindcss-children": "^0.1.0",
|
|
168
|
-
"webpack": "^5.
|
|
169
|
+
"webpack": "^5.86.0"
|
|
169
170
|
},
|
|
170
171
|
"dependencies": {
|
|
171
172
|
"@babel/generator": "^7.21.4",
|
|
@@ -174,13 +175,13 @@
|
|
|
174
175
|
"@babel/types": "^7.21.4",
|
|
175
176
|
"@csstools/postcss-is-pseudo-class": "^3.2.1",
|
|
176
177
|
"micromatch": "^4.0.5",
|
|
177
|
-
"postcss": "8.4.
|
|
178
|
+
"postcss": "8.4.24",
|
|
178
179
|
"postcss-selector-parser": "^6.0.13",
|
|
179
180
|
"semver": "^7.5.1",
|
|
180
|
-
"tailwindcss-mangle-shared": "^1.2.
|
|
181
|
-
"tailwindcss-patch": "^1.2.
|
|
181
|
+
"tailwindcss-mangle-shared": "^1.2.4",
|
|
182
|
+
"tailwindcss-patch": "^1.2.4"
|
|
182
183
|
},
|
|
183
|
-
"packageManager": "pnpm@8.
|
|
184
|
+
"packageManager": "pnpm@8.6.1",
|
|
184
185
|
"scripts": {
|
|
185
186
|
"dev": "yarn clean && yarn dts && cross-env NODE_ENV=development rollup -c rollup.config.ts --configPlugin typescript -w",
|
|
186
187
|
"build": "yarn clean && cross-env NODE_ENV=production rollup -c rollup.config.ts --configPlugin typescript && yarn dts",
|
|
@@ -189,7 +190,7 @@
|
|
|
189
190
|
"dts": "tsc --emitDeclarationOnly -p tsconfig.dts.json",
|
|
190
191
|
"test": "jest && vitest run",
|
|
191
192
|
"jest-u": "jest -u",
|
|
192
|
-
"
|
|
193
|
+
"test:dev": "vitest",
|
|
193
194
|
"vitest:coverage": "vitest run --coverage",
|
|
194
195
|
"e2e": "vitest run -c ./vitest.e2e.config.ts",
|
|
195
196
|
"e2e:dev": "vitest -c ./vitest.e2e.config.ts",
|