Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More β†’
Socket
Sign inDemoInstall
Socket

vite-plugin-dynamic-import

Package Overview
Dependencies
Maintainers
2
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vite-plugin-dynamic-import - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

1

dist/index.d.ts

@@ -6,2 +6,3 @@ import type { Plugin } from 'vite';

export { hasDynamicImport, normallyImporteeRE, mappingPath, toLooseGlob, type Resolved, Resolve, dynamicImportToGlob, globFiles, };
export declare const TAG = "[vite-plugin-dynamic-import]";
export interface Options {

@@ -8,0 +9,0 @@ filter?: (id: string) => boolean | void;

53

dist/index.js

@@ -60,10 +60,10 @@ "use strict";

}
function relativeify(relative) {
if (relative === "") {
function relativeify(relativePath) {
if (relativePath === "") {
return ".";
}
if (!(relative.startsWith("./") || relative.startsWith(".\\"))) {
return "./" + relative;
if (!/^\.{1,2}[/\\]/.test(relativePath)) {
return "./" + relativePath;
}
return relative;
return relativePath;
}

@@ -77,2 +77,10 @@ const isWindows = os.platform() === "win32";

}
const COLOURS = {
$: (c) => (str) => `\x1B[${c}m` + str + "\x1B[0m",
gary: (str) => COLOURS.$(90)(str),
cyan: (str) => COLOURS.$(36)(str),
yellow: (str) => COLOURS.$(33)(str),
green: (str) => COLOURS.$(32)(str),
red: (str) => COLOURS.$(31)(str)
};
const VOLUME_RE = /^[A-Z]:/i;

@@ -334,2 +342,3 @@ function node_modules(root, paths = []) {

}
const TAG = "[vite-plugin-dynamic-import]";
function dynamicImport(options = {}) {

@@ -457,22 +466,29 @@ let config;

let { files, resolved, normally } = globResult;
files = files.filter((f) => path.posix.join(path.dirname(id), f) !== id);
options.onFiles && (files = options.onFiles(files, id) || files);
if (normally) {
ms.overwrite(expStart, expEnd, `import('${normally}')`);
} else {
if (!(files == null ? void 0 : files.length))
continue;
const mapAlias = resolved ? { [resolved.alias.relative]: resolved.alias.findString } : void 0;
const maps = mappingPath(files, mapAlias);
const runtimeName = `__variableDynamicImportRuntime${dynamicImportIndex++}__`;
const runtimeFn = generateDynamicImportRuntime(maps, runtimeName);
ms.overwrite(expStart, expEnd, `${runtimeName}(${rawImportee})`);
runtimeFunctions.push(runtimeFn);
continue;
}
if (!(files == null ? void 0 : files.length)) {
console.log(
TAG,
COLOURS.yellow(`no files matched: ${importExpression}
`),
` file: ${id}`
);
continue;
}
files = files.filter((f) => path.posix.join(path.dirname(id), f) !== id);
options.onFiles && (files = options.onFiles(files, id) || files);
const mapAlias = resolved ? { [resolved.alias.relative]: resolved.alias.findString } : void 0;
const maps = mappingPath(files, mapAlias);
const runtimeName = `__variableDynamicImportRuntime${dynamicImportIndex++}__`;
const runtimeFn = generateDynamicImportRuntime(maps, runtimeName);
ms.overwrite(expStart, expEnd, `${runtimeName}(${rawImportee})`);
runtimeFunctions.push(runtimeFn);
}
if (runtimeFunctions.length) {
ms.append([
"// [vite-plugin-dynamic-import] runtime -S-",
`// ${TAG} runtime -S-`,
...runtimeFunctions,
"// [vite-plugin-dynamic-import] runtime -E-"
`// ${TAG} runtime -E-`
].join("\n"));

@@ -553,2 +569,3 @@ }

exports.Resolve = Resolve;
exports.TAG = TAG;
exports.default = dynamicImport;

@@ -555,0 +572,0 @@ exports.dynamicImportToGlob = dynamicImportToGlob;

{
"name": "vite-plugin-dynamic-import",
"version": "1.3.1",
"version": "1.3.2",
"description": "Enhance Vite builtin dynamic import",

@@ -26,3 +26,3 @@ "main": "./dist/index.js",

"types": "tsc",
"prepublishOnly": "npm run build"
"prepublishOnly": "npm run test && npm run build"
},

@@ -40,3 +40,3 @@ "dependencies": {

"vite": "^4.3.2",
"vite-plugin-utils": "^0.4.2",
"vite-plugin-utils": "^0.4.3",
"vitest": "^0.30.1"

@@ -43,0 +43,0 @@ },

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚑️ by Socket Inc