@vue/compiler-sfc 3.4.15 → 3.4.17
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/compiler-sfc.cjs.js +9 -6
- package/dist/compiler-sfc.d.ts +1 -0
- package/dist/compiler-sfc.esm-browser.js +602 -1053
- package/package.json +10 -10
package/dist/compiler-sfc.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-sfc v3.4.
|
|
2
|
+
* @vue/compiler-sfc v3.4.17
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -978,6 +978,11 @@ class LRUCache {
|
|
|
978
978
|
[Symbol.iterator]() {
|
|
979
979
|
return this.entries();
|
|
980
980
|
}
|
|
981
|
+
/**
|
|
982
|
+
* A String value that is used in the creation of the default string description of an object.
|
|
983
|
+
* Called by the built-in method Object.prototype.toString.
|
|
984
|
+
*/
|
|
985
|
+
[Symbol.toStringTag] = 'LRUCache';
|
|
981
986
|
/**
|
|
982
987
|
* Find a value for which the supplied fn method returns a truthy value,
|
|
983
988
|
* similar to Array.find(). fn is called as fn(value, key, cache).
|
|
@@ -4406,7 +4411,6 @@ const trimPlugin = () => {
|
|
|
4406
4411
|
};
|
|
4407
4412
|
};
|
|
4408
4413
|
trimPlugin.postcss = true;
|
|
4409
|
-
var trimPlugin$1 = trimPlugin;
|
|
4410
4414
|
|
|
4411
4415
|
var dist = {exports: {}};
|
|
4412
4416
|
|
|
@@ -7978,7 +7982,6 @@ function isSpaceCombinator(node) {
|
|
|
7978
7982
|
return node.type === "combinator" && /^\s+$/.test(node.value);
|
|
7979
7983
|
}
|
|
7980
7984
|
scopedPlugin.postcss = true;
|
|
7981
|
-
var scopedPlugin$1 = scopedPlugin;
|
|
7982
7985
|
|
|
7983
7986
|
var sourceMap$1 = {};
|
|
7984
7987
|
|
|
@@ -15335,10 +15338,10 @@ function doCompileStyle(options) {
|
|
|
15335
15338
|
const plugins = (postcssPlugins || []).slice();
|
|
15336
15339
|
plugins.unshift(cssVarsPlugin({ id: shortId, isProd }));
|
|
15337
15340
|
if (trim) {
|
|
15338
|
-
plugins.push(trimPlugin
|
|
15341
|
+
plugins.push(trimPlugin());
|
|
15339
15342
|
}
|
|
15340
15343
|
if (scoped) {
|
|
15341
|
-
plugins.push(scopedPlugin
|
|
15344
|
+
plugins.push(scopedPlugin(longId));
|
|
15342
15345
|
}
|
|
15343
15346
|
let cssModules;
|
|
15344
15347
|
if (modules) {
|
|
@@ -20609,7 +20612,7 @@ function isStaticNode(node) {
|
|
|
20609
20612
|
return false;
|
|
20610
20613
|
}
|
|
20611
20614
|
|
|
20612
|
-
const version = "3.4.
|
|
20615
|
+
const version = "3.4.17";
|
|
20613
20616
|
const parseCache = parseCache$1;
|
|
20614
20617
|
const errorMessages = {
|
|
20615
20618
|
...CompilerDOM.errorMessages,
|