vite-plugin-external-cdn 1.0.2 → 1.0.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 +1 -1
- package/dist/index.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6 -0
- package/dist/index.mjs +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -131,6 +131,12 @@ declare const modulesConfig: {
|
|
|
131
131
|
path: string;
|
|
132
132
|
};
|
|
133
133
|
};
|
|
134
|
+
dayjs: {
|
|
135
|
+
var: string;
|
|
136
|
+
jsdeliver: {
|
|
137
|
+
path: string;
|
|
138
|
+
};
|
|
139
|
+
};
|
|
134
140
|
};
|
|
135
141
|
type ModuleName = keyof typeof modulesConfig;
|
|
136
142
|
declare function autoComplete(name: ModuleName): (prodUrl: string) => Module;
|
package/dist/index.d.ts
CHANGED
|
@@ -131,6 +131,12 @@ declare const modulesConfig: {
|
|
|
131
131
|
path: string;
|
|
132
132
|
};
|
|
133
133
|
};
|
|
134
|
+
dayjs: {
|
|
135
|
+
var: string;
|
|
136
|
+
jsdeliver: {
|
|
137
|
+
path: string;
|
|
138
|
+
};
|
|
139
|
+
};
|
|
134
140
|
};
|
|
135
141
|
type ModuleName = keyof typeof modulesConfig;
|
|
136
142
|
declare function autoComplete(name: ModuleName): (prodUrl: string) => Module;
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED