vite 4.4.4 → 4.4.5
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.
Potentially problematic release.
This version of vite might be problematic. Click here for more details.
- package/dist/node/chunks/{dep-abb4f102.js → dep-46921e22.js} +47 -27
- package/dist/node/chunks/{dep-220a20f7.js → dep-b4841fa2.js} +1 -1
- package/dist/node/chunks/{dep-11aba5f5.js → dep-b53bbe38.js} +32 -7
- package/dist/node/cli.js +5 -5
- package/dist/node/index.d.ts +9 -1
- package/dist/node/index.js +2 -2
- package/package.json +4 -4
|
@@ -62,10 +62,7 @@ function getAugmentedNamespace(n) {
|
|
|
62
62
|
if (typeof f == "function") {
|
|
63
63
|
var a = function a () {
|
|
64
64
|
if (this instanceof a) {
|
|
65
|
-
|
|
66
|
-
args.push.apply(args, arguments);
|
|
67
|
-
var Ctor = Function.bind.apply(f, args);
|
|
68
|
-
return new Ctor();
|
|
65
|
+
return Reflect.construct(f, arguments, this.constructor);
|
|
69
66
|
}
|
|
70
67
|
return f.apply(this, arguments);
|
|
71
68
|
};
|
|
@@ -7413,7 +7410,7 @@ function isReference(node, parent) {
|
|
|
7413
7410
|
return false;
|
|
7414
7411
|
}
|
|
7415
7412
|
|
|
7416
|
-
var version$3 = "25.0.
|
|
7413
|
+
var version$3 = "25.0.3";
|
|
7417
7414
|
var peerDependencies = {
|
|
7418
7415
|
rollup: "^2.68.0||^3.0.0"
|
|
7419
7416
|
};
|
|
@@ -7767,10 +7764,7 @@ export function getAugmentedNamespace(n) {
|
|
|
7767
7764
|
if (typeof f == "function") {
|
|
7768
7765
|
var a = function a () {
|
|
7769
7766
|
if (this instanceof a) {
|
|
7770
|
-
|
|
7771
|
-
args.push.apply(args, arguments);
|
|
7772
|
-
var Ctor = Function.bind.apply(f, args);
|
|
7773
|
-
return new Ctor();
|
|
7767
|
+
return Reflect.construct(f, arguments, this.constructor);
|
|
7774
7768
|
}
|
|
7775
7769
|
return f.apply(this, arguments);
|
|
7776
7770
|
};
|
|
@@ -12338,6 +12332,18 @@ function optimizeSafeRealPathSync() {
|
|
|
12338
12332
|
safeRealpathSync = fs$l.realpathSync;
|
|
12339
12333
|
return;
|
|
12340
12334
|
}
|
|
12335
|
+
// Check the availability `fs.realpathSync.native`
|
|
12336
|
+
// in Windows virtual and RAM disks that bypass the Volume Mount Manager, in programs such as imDisk
|
|
12337
|
+
// get the error EISDIR: illegal operation on a directory
|
|
12338
|
+
try {
|
|
12339
|
+
fs$l.realpathSync.native(path$o.resolve('./'));
|
|
12340
|
+
}
|
|
12341
|
+
catch (error) {
|
|
12342
|
+
if (error.message.includes('EISDIR: illegal operation on a directory')) {
|
|
12343
|
+
safeRealpathSync = fs$l.realpathSync;
|
|
12344
|
+
return;
|
|
12345
|
+
}
|
|
12346
|
+
}
|
|
12341
12347
|
exec('net use', (error, stdout) => {
|
|
12342
12348
|
if (error)
|
|
12343
12349
|
return;
|
|
@@ -13040,7 +13046,8 @@ function buildReporterPlugin(config) {
|
|
|
13040
13046
|
// the same chunk. The intersecting dynamic importers' dynamic import is not
|
|
13041
13047
|
// expected to work. Note we're only detecting the direct ineffective
|
|
13042
13048
|
// dynamic import here.
|
|
13043
|
-
|
|
13049
|
+
const detectedIneffectiveDynamicImport = module.dynamicImporters.some((id) => !isInNodeModules(id) && chunk.moduleIds.includes(id));
|
|
13050
|
+
if (detectedIneffectiveDynamicImport) {
|
|
13044
13051
|
this.warn(`\n(!) ${module.id} is dynamically imported by ${module.dynamicImporters
|
|
13045
13052
|
.map((m) => m)
|
|
13046
13053
|
.join(', ')} but also statically imported by ${module.importers
|
|
@@ -13276,7 +13283,7 @@ function walk$3(dir, state, done) {
|
|
|
13276
13283
|
if (state.err) {
|
|
13277
13284
|
return;
|
|
13278
13285
|
}
|
|
13279
|
-
if (err && !(err.code === "ENOENT" || err.code === "EACCES")) {
|
|
13286
|
+
if (err && !(err.code === "ENOENT" || err.code === "EACCES" || err.code === "EPERM")) {
|
|
13280
13287
|
state.err = true;
|
|
13281
13288
|
done(err);
|
|
13282
13289
|
} else {
|
|
@@ -13776,11 +13783,11 @@ function rebasePath(value, prependPath) {
|
|
|
13776
13783
|
return require$$0$4.posix.normalize(require$$0$4.posix.join(prependPath, value));
|
|
13777
13784
|
}
|
|
13778
13785
|
}
|
|
13779
|
-
var TSConfckParseError = class extends Error {
|
|
13786
|
+
var TSConfckParseError = class _TSConfckParseError extends Error {
|
|
13780
13787
|
constructor(message, code, tsconfigFile, cause) {
|
|
13781
13788
|
super(message);
|
|
13782
|
-
Object.setPrototypeOf(this,
|
|
13783
|
-
this.name =
|
|
13789
|
+
Object.setPrototypeOf(this, _TSConfckParseError.prototype);
|
|
13790
|
+
this.name = _TSConfckParseError.name;
|
|
13784
13791
|
this.code = code;
|
|
13785
13792
|
this.cause = cause;
|
|
13786
13793
|
this.tsconfigFile = tsconfigFile;
|
|
@@ -38508,10 +38515,18 @@ function cssPostPlugin(config) {
|
|
|
38508
38515
|
const injectCode = `var ${style} = document.createElement('style');` +
|
|
38509
38516
|
`${style}.textContent = ${cssString};` +
|
|
38510
38517
|
`document.head.appendChild(${style});`;
|
|
38518
|
+
let injectionPoint;
|
|
38511
38519
|
const wrapIdx = code.indexOf('System.register');
|
|
38512
|
-
|
|
38520
|
+
if (wrapIdx >= 0) {
|
|
38521
|
+
const executeFnStart = code.indexOf('execute:', wrapIdx);
|
|
38522
|
+
injectionPoint = code.indexOf('{', executeFnStart) + 1;
|
|
38523
|
+
}
|
|
38524
|
+
else {
|
|
38525
|
+
const insertMark = "'use strict';";
|
|
38526
|
+
injectionPoint = code.indexOf(insertMark) + insertMark.length;
|
|
38527
|
+
}
|
|
38513
38528
|
const s = new MagicString(code);
|
|
38514
|
-
s.appendRight(
|
|
38529
|
+
s.appendRight(injectionPoint, injectCode);
|
|
38515
38530
|
if (config.build.sourcemap) {
|
|
38516
38531
|
// resolve public URL from CSS paths, we need to use absolute paths
|
|
38517
38532
|
return {
|
|
@@ -38902,8 +38917,8 @@ function createCachedImport(imp) {
|
|
|
38902
38917
|
return cached;
|
|
38903
38918
|
};
|
|
38904
38919
|
}
|
|
38905
|
-
const importPostcssImport = createCachedImport(() => import('./dep-
|
|
38906
|
-
const importPostcssModules = createCachedImport(() => import('./dep-
|
|
38920
|
+
const importPostcssImport = createCachedImport(() => import('./dep-b4841fa2.js').then(function (n) { return n.i; }));
|
|
38921
|
+
const importPostcssModules = createCachedImport(() => import('./dep-b53bbe38.js').then(function (n) { return n.i; }));
|
|
38907
38922
|
const importPostcss = createCachedImport(() => import('postcss'));
|
|
38908
38923
|
/**
|
|
38909
38924
|
* @experimental
|
|
@@ -45684,7 +45699,7 @@ function runOptimizeDeps(resolvedConfig, depsInfo, ssr = resolvedConfig.command
|
|
|
45684
45699
|
});
|
|
45685
45700
|
}
|
|
45686
45701
|
};
|
|
45687
|
-
const
|
|
45702
|
+
const successfulResult = {
|
|
45688
45703
|
metadata,
|
|
45689
45704
|
cancel: cleanUp,
|
|
45690
45705
|
commit: async () => {
|
|
@@ -45729,7 +45744,7 @@ function runOptimizeDeps(resolvedConfig, depsInfo, ssr = resolvedConfig.command
|
|
|
45729
45744
|
// skip the scanner step if the lockfile hasn't changed
|
|
45730
45745
|
return {
|
|
45731
45746
|
cancel: async () => cleanUp(),
|
|
45732
|
-
result: Promise.resolve(
|
|
45747
|
+
result: Promise.resolve(successfulResult),
|
|
45733
45748
|
};
|
|
45734
45749
|
}
|
|
45735
45750
|
const cancelledResult = {
|
|
@@ -45788,7 +45803,7 @@ function runOptimizeDeps(resolvedConfig, depsInfo, ssr = resolvedConfig.command
|
|
|
45788
45803
|
}
|
|
45789
45804
|
}
|
|
45790
45805
|
debug$7?.(`Dependencies bundled in ${(performance.now() - start).toFixed(2)}ms`);
|
|
45791
|
-
return
|
|
45806
|
+
return successfulResult;
|
|
45792
45807
|
})
|
|
45793
45808
|
.catch((e) => {
|
|
45794
45809
|
if (e.errors && e.message.includes('The build was canceled')) {
|
|
@@ -47967,6 +47982,9 @@ function prepareOutDir(outDirs, emptyOutDir, config) {
|
|
|
47967
47982
|
if (config.build.copyPublicDir &&
|
|
47968
47983
|
config.publicDir &&
|
|
47969
47984
|
fs$l.existsSync(config.publicDir)) {
|
|
47985
|
+
if (!areSeparateFolders(outDir, config.publicDir)) {
|
|
47986
|
+
config.logger.warn(colors$1.yellow(`\n${colors$1.bold(`(!)`)} The public directory feature may not work correctly. outDir ${colors$1.white(colors$1.dim(outDir))} and publicDir ${colors$1.white(colors$1.dim(config.publicDir))} are not separate folders.\n`));
|
|
47987
|
+
}
|
|
47970
47988
|
copyDir(config.publicDir, outDir);
|
|
47971
47989
|
}
|
|
47972
47990
|
}
|
|
@@ -48297,6 +48315,11 @@ function toOutputFilePathWithoutRuntime(filename, type, hostId, hostType, config
|
|
|
48297
48315
|
}
|
|
48298
48316
|
const toOutputFilePathInCss = toOutputFilePathWithoutRuntime;
|
|
48299
48317
|
const toOutputFilePathInHtml = toOutputFilePathWithoutRuntime;
|
|
48318
|
+
function areSeparateFolders(a, b) {
|
|
48319
|
+
const na = normalizePath$3(a);
|
|
48320
|
+
const nb = normalizePath$3(b);
|
|
48321
|
+
return na !== nb && !na.startsWith(nb + '/') && !nb.startsWith(na + '/');
|
|
48322
|
+
}
|
|
48300
48323
|
|
|
48301
48324
|
var build$1 = {
|
|
48302
48325
|
__proto__: null,
|
|
@@ -54798,6 +54821,9 @@ async function loadAndTransform(id, url, server, options, timestamp, mod, resolv
|
|
|
54798
54821
|
}
|
|
54799
54822
|
catch (e) {
|
|
54800
54823
|
if (e.code !== 'ENOENT') {
|
|
54824
|
+
if (e.code === 'EISDIR') {
|
|
54825
|
+
e.message = `${e.message} ${file}`;
|
|
54826
|
+
}
|
|
54801
54827
|
throw e;
|
|
54802
54828
|
}
|
|
54803
54829
|
}
|
|
@@ -65545,12 +65571,6 @@ function resolveSSROptions(ssr, preserveSymlinks, buildSsrCjsExternalHeuristics)
|
|
|
65545
65571
|
|
|
65546
65572
|
const debug = createDebugger('vite:config');
|
|
65547
65573
|
const promisifiedRealpath = promisify$4(fs$l.realpath);
|
|
65548
|
-
/**
|
|
65549
|
-
* Type helper to make it easier to use vite.config.ts
|
|
65550
|
-
* accepts a direct {@link UserConfig} object, or a function that returns it.
|
|
65551
|
-
* The function receives a {@link ConfigEnv} object that exposes two properties:
|
|
65552
|
-
* `command` (either `'build'` or `'serve'`), and `mode`.
|
|
65553
|
-
*/
|
|
65554
65574
|
function defineConfig(config) {
|
|
65555
65575
|
return config;
|
|
65556
65576
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { F as commonjsGlobal, E as getDefaultExportFromCjs } from './dep-
|
|
1
|
+
import { F as commonjsGlobal, E as getDefaultExportFromCjs } from './dep-46921e22.js';
|
|
2
2
|
import require$$0__default from 'fs';
|
|
3
3
|
import require$$0 from 'postcss';
|
|
4
4
|
import require$$0$1 from 'path';
|
|
@@ -4139,7 +4139,8 @@ var node = require$$0$2.deprecate;
|
|
|
4139
4139
|
key: "value",
|
|
4140
4140
|
get: function get() {
|
|
4141
4141
|
return this._value;
|
|
4142
|
-
}
|
|
4142
|
+
},
|
|
4143
|
+
set:
|
|
4143
4144
|
/**
|
|
4144
4145
|
* Before 3.0, the value had to be set to an escaped value including any wrapped
|
|
4145
4146
|
* quote marks. In 3.0, the semantics of `Attribute.value` changed so that the value
|
|
@@ -4152,8 +4153,7 @@ var node = require$$0$2.deprecate;
|
|
|
4152
4153
|
* Instead, you should call `attr.setValue(newValue, opts)` and pass options that describe
|
|
4153
4154
|
* how the new value is quoted.
|
|
4154
4155
|
*/
|
|
4155
|
-
|
|
4156
|
-
set: function set(v) {
|
|
4156
|
+
function set(v) {
|
|
4157
4157
|
if (this._constructed) {
|
|
4158
4158
|
var _unescapeValue2 = unescapeValue(v),
|
|
4159
4159
|
deprecatedUsage = _unescapeValue2.deprecatedUsage,
|
|
@@ -4176,6 +4176,31 @@ var node = require$$0$2.deprecate;
|
|
|
4176
4176
|
this._value = v;
|
|
4177
4177
|
}
|
|
4178
4178
|
}
|
|
4179
|
+
}, {
|
|
4180
|
+
key: "insensitive",
|
|
4181
|
+
get: function get() {
|
|
4182
|
+
return this._insensitive;
|
|
4183
|
+
}
|
|
4184
|
+
/**
|
|
4185
|
+
* Set the case insensitive flag.
|
|
4186
|
+
* If the case insensitive flag changes, the raw (escaped) value at `attr.raws.insensitiveFlag`
|
|
4187
|
+
* of the attribute is updated accordingly.
|
|
4188
|
+
*
|
|
4189
|
+
* @param {true | false} insensitive true if the attribute should match case-insensitively.
|
|
4190
|
+
*/
|
|
4191
|
+
,
|
|
4192
|
+
set: function set(insensitive) {
|
|
4193
|
+
if (!insensitive) {
|
|
4194
|
+
this._insensitive = false; // "i" and "I" can be used in "this.raws.insensitiveFlag" to store the original notation.
|
|
4195
|
+
// When setting `attr.insensitive = false` both should be erased to ensure correct serialization.
|
|
4196
|
+
|
|
4197
|
+
if (this.raws && (this.raws.insensitiveFlag === 'I' || this.raws.insensitiveFlag === 'i')) {
|
|
4198
|
+
this.raws.insensitiveFlag = undefined;
|
|
4199
|
+
}
|
|
4200
|
+
}
|
|
4201
|
+
|
|
4202
|
+
this._insensitive = insensitive;
|
|
4203
|
+
}
|
|
4179
4204
|
}, {
|
|
4180
4205
|
key: "attribute",
|
|
4181
4206
|
get: function get() {
|
|
@@ -5059,7 +5084,7 @@ tokenTypes.combinator = combinator$1;
|
|
|
5059
5084
|
}
|
|
5060
5085
|
|
|
5061
5086
|
lastAdded = 'attribute';
|
|
5062
|
-
} else if (!node.value && node.value !== "" || lastAdded === "value" && !spaceAfterMeaningfulToken) {
|
|
5087
|
+
} else if (!node.value && node.value !== "" || lastAdded === "value" && !(spaceAfterMeaningfulToken || node.quoteMark)) {
|
|
5063
5088
|
var _unescaped = (0, _util.unesc)(content);
|
|
5064
5089
|
|
|
5065
5090
|
var _oldRawValue = (0, _util.getProp)(node, 'raws', 'value') || '';
|
|
@@ -5247,8 +5272,8 @@ tokenTypes.combinator = combinator$1;
|
|
|
5247
5272
|
return nodes;
|
|
5248
5273
|
}
|
|
5249
5274
|
/**
|
|
5250
|
-
*
|
|
5251
|
-
* @param {*} nodes
|
|
5275
|
+
*
|
|
5276
|
+
* @param {*} nodes
|
|
5252
5277
|
*/
|
|
5253
5278
|
;
|
|
5254
5279
|
|
package/dist/node/cli.js
CHANGED
|
@@ -2,7 +2,7 @@ import path from 'node:path';
|
|
|
2
2
|
import fs from 'node:fs';
|
|
3
3
|
import { performance } from 'node:perf_hooks';
|
|
4
4
|
import { EventEmitter } from 'events';
|
|
5
|
-
import { C as colors, D as bindShortcuts, x as createLogger, h as resolveConfig } from './chunks/dep-
|
|
5
|
+
import { C as colors, D as bindShortcuts, x as createLogger, h as resolveConfig } from './chunks/dep-46921e22.js';
|
|
6
6
|
import { VERSION } from './constants.js';
|
|
7
7
|
import 'node:fs/promises';
|
|
8
8
|
import 'node:url';
|
|
@@ -738,7 +738,7 @@ cli
|
|
|
738
738
|
filterDuplicateOptions(options);
|
|
739
739
|
// output structure is preserved even after bundling so require()
|
|
740
740
|
// is ok here
|
|
741
|
-
const { createServer } = await import('./chunks/dep-
|
|
741
|
+
const { createServer } = await import('./chunks/dep-46921e22.js').then(function (n) { return n.I; });
|
|
742
742
|
try {
|
|
743
743
|
const server = await createServer({
|
|
744
744
|
root,
|
|
@@ -816,7 +816,7 @@ cli
|
|
|
816
816
|
.option('-w, --watch', `[boolean] rebuilds when modules have changed on disk`)
|
|
817
817
|
.action(async (root, options) => {
|
|
818
818
|
filterDuplicateOptions(options);
|
|
819
|
-
const { build } = await import('./chunks/dep-
|
|
819
|
+
const { build } = await import('./chunks/dep-46921e22.js').then(function (n) { return n.H; });
|
|
820
820
|
const buildOptions = cleanOptions(options);
|
|
821
821
|
try {
|
|
822
822
|
await build({
|
|
@@ -844,7 +844,7 @@ cli
|
|
|
844
844
|
.option('--force', `[boolean] force the optimizer to ignore the cache and re-bundle`)
|
|
845
845
|
.action(async (root, options) => {
|
|
846
846
|
filterDuplicateOptions(options);
|
|
847
|
-
const { optimizeDeps } = await import('./chunks/dep-
|
|
847
|
+
const { optimizeDeps } = await import('./chunks/dep-46921e22.js').then(function (n) { return n.G; });
|
|
848
848
|
try {
|
|
849
849
|
const config = await resolveConfig({
|
|
850
850
|
root,
|
|
@@ -871,7 +871,7 @@ cli
|
|
|
871
871
|
.option('--outDir <dir>', `[string] output directory (default: dist)`)
|
|
872
872
|
.action(async (root, options) => {
|
|
873
873
|
filterDuplicateOptions(options);
|
|
874
|
-
const { preview } = await import('./chunks/dep-
|
|
874
|
+
const { preview } = await import('./chunks/dep-46921e22.js').then(function (n) { return n.J; });
|
|
875
875
|
try {
|
|
876
876
|
const server = await preview({
|
|
877
877
|
root,
|
package/dist/node/index.d.ts
CHANGED
|
@@ -570,6 +570,10 @@ export { CustomPayload }
|
|
|
570
570
|
* The function receives a {@link ConfigEnv} object that exposes two properties:
|
|
571
571
|
* `command` (either `'build'` or `'serve'`), and `mode`.
|
|
572
572
|
*/
|
|
573
|
+
export declare function defineConfig(config: UserConfig): UserConfig;
|
|
574
|
+
|
|
575
|
+
export declare function defineConfig(config: Promise<UserConfig>): Promise<UserConfig>;
|
|
576
|
+
|
|
573
577
|
export declare function defineConfig(config: UserConfigExport): UserConfigExport;
|
|
574
578
|
|
|
575
579
|
export declare interface DepOptimizationConfig {
|
|
@@ -2667,10 +2671,14 @@ export declare interface UserConfig {
|
|
|
2667
2671
|
appType?: AppType;
|
|
2668
2672
|
}
|
|
2669
2673
|
|
|
2670
|
-
export declare type UserConfigExport = UserConfig | Promise<UserConfig> | UserConfigFn;
|
|
2674
|
+
export declare type UserConfigExport = UserConfig | Promise<UserConfig> | UserConfigFnObject | UserConfigFnPromise | UserConfigFn;
|
|
2671
2675
|
|
|
2672
2676
|
export declare type UserConfigFn = (env: ConfigEnv) => UserConfig | Promise<UserConfig>;
|
|
2673
2677
|
|
|
2678
|
+
export declare type UserConfigFnObject = (env: ConfigEnv) => UserConfig;
|
|
2679
|
+
|
|
2680
|
+
export declare type UserConfigFnPromise = (env: ConfigEnv) => Promise<UserConfig>;
|
|
2681
|
+
|
|
2674
2682
|
export declare const version: string;
|
|
2675
2683
|
|
|
2676
2684
|
export declare interface ViteDevServer {
|
package/dist/node/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { i as isInNodeModules } from './chunks/dep-
|
|
2
|
-
export { b as build, e as buildErrorMessage, v as createFilter, x as createLogger, c as createServer, g as defineConfig, f as formatPostcssSourceMap, k as getDepOptimizationConfig, m as isDepsOptimizerEnabled, z as isFileServingAllowed, l as loadConfigFromFile, A as loadEnv, u as mergeAlias, q as mergeConfig, n as normalizePath, o as optimizeDeps, a as preprocessCSS, p as preview, j as resolveBaseUrl, h as resolveConfig, B as resolveEnvPrefix, d as resolvePackageData, r as resolvePackageEntry, y as searchForWorkspaceRoot, w as send, s as sortUserPlugins, t as transformWithEsbuild } from './chunks/dep-
|
|
1
|
+
import { i as isInNodeModules } from './chunks/dep-46921e22.js';
|
|
2
|
+
export { b as build, e as buildErrorMessage, v as createFilter, x as createLogger, c as createServer, g as defineConfig, f as formatPostcssSourceMap, k as getDepOptimizationConfig, m as isDepsOptimizerEnabled, z as isFileServingAllowed, l as loadConfigFromFile, A as loadEnv, u as mergeAlias, q as mergeConfig, n as normalizePath, o as optimizeDeps, a as preprocessCSS, p as preview, j as resolveBaseUrl, h as resolveConfig, B as resolveEnvPrefix, d as resolvePackageData, r as resolvePackageEntry, y as searchForWorkspaceRoot, w as send, s as sortUserPlugins, t as transformWithEsbuild } from './chunks/dep-46921e22.js';
|
|
3
3
|
export { VERSION as version } from './constants.js';
|
|
4
4
|
export { version as esbuildVersion } from 'esbuild';
|
|
5
5
|
export { VERSION as rollupVersion } from 'rollup';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Evan You",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"//": "READ CONTRIBUTING.md to understand what to put under deps vs. devDeps!",
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"esbuild": "^0.18.10",
|
|
71
|
-
"postcss": "^8.4.
|
|
71
|
+
"postcss": "^8.4.26",
|
|
72
72
|
"rollup": "^3.25.2"
|
|
73
73
|
},
|
|
74
74
|
"optionalDependencies": {
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"@babel/types": "^7.22.5",
|
|
81
81
|
"@jridgewell/trace-mapping": "^0.3.18",
|
|
82
82
|
"@rollup/plugin-alias": "^4.0.4",
|
|
83
|
-
"@rollup/plugin-commonjs": "^25.0.
|
|
83
|
+
"@rollup/plugin-commonjs": "^25.0.3",
|
|
84
84
|
"@rollup/plugin-dynamic-import-vars": "^2.0.4",
|
|
85
85
|
"@rollup/plugin-json": "^6.0.0",
|
|
86
86
|
"@rollup/plugin-node-resolve": "15.1.0",
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
"source-map-support": "^0.5.21",
|
|
130
130
|
"strip-ansi": "^7.1.0",
|
|
131
131
|
"strip-literal": "^1.0.1",
|
|
132
|
-
"tsconfck": "^2.1.
|
|
132
|
+
"tsconfck": "^2.1.2",
|
|
133
133
|
"tslib": "^2.6.0",
|
|
134
134
|
"types": "link:./types",
|
|
135
135
|
"ufo": "^1.1.2",
|