vite-import-maps 0.1.2 → 0.1.4
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/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# vite-plugin-native-import-maps
|
|
2
2
|
|
|
3
|
+
## 0.1.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 82cd958: Update package.json info
|
|
8
|
+
|
|
9
|
+
## 0.1.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 2584c9b: rename `shared` option to `imports` and `sharedOutDir` to `modulesOutDir`
|
|
14
|
+
|
|
3
15
|
## 0.1.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<a href="https://github.com/riccardoperra/vite-plugin-import-maps/actions/workflows/ci.yml"><img src="https://github.com/riccardoperra/vite-plugin-import-maps/actions/workflows/release.yml/badge.svg?branch=main" alt="build status"></a>
|
|
6
6
|
</p>
|
|
7
7
|
|
|
8
|
-
A Vite plugin that generates and keeps **browser import maps** in sync with your Vite dev server and production build.
|
|
8
|
+
A Vite plugin that generates and keeps **browser [import maps](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/script/type/importmap)** in sync with your Vite dev server and production build.
|
|
9
9
|
|
|
10
10
|
It's aimed at **micro-frontends**, **plugin systems**, and any setup where you load ESM modules at runtime and want to:
|
|
11
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite-import-maps",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "A Vite plugin that manages import maps for shared dependencies in your Vite applications.",
|
|
5
5
|
"main": "./dist/index.mjs",
|
|
6
6
|
"module ": "./dist/index.mjs",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"microfrontend",
|
|
27
27
|
"plugin"
|
|
28
28
|
],
|
|
29
|
-
"repository": "https://github.com/riccardoperra/vite-
|
|
30
|
-
"homepage": "https://github.com/riccardoperra/vite-
|
|
29
|
+
"repository": "https://github.com/riccardoperra/vite-import-maps",
|
|
30
|
+
"homepage": "https://github.com/riccardoperra/vite-import-maps",
|
|
31
31
|
"author": {
|
|
32
32
|
"name": "Riccardo Perra",
|
|
33
33
|
"email": "riccardo.perra@icloud.com",
|