create-esmx 3.0.0-rc.60 → 3.0.0-rc.62

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-esmx",
3
- "version": "3.0.0-rc.60",
3
+ "version": "3.0.0-rc.62",
4
4
  "description": "A scaffold tool for creating Esmx projects",
5
5
  "type": "module",
6
6
  "private": false,
@@ -24,9 +24,9 @@
24
24
  },
25
25
  "devDependencies": {
26
26
  "@biomejs/biome": "1.9.4",
27
- "@esmx/core": "3.0.0-rc.60",
28
- "@esmx/rspack": "3.0.0-rc.60",
29
- "@esmx/rspack-vue": "3.0.0-rc.60",
27
+ "@esmx/core": "3.0.0-rc.62",
28
+ "@esmx/rspack": "3.0.0-rc.62",
29
+ "@esmx/rspack-vue": "3.0.0-rc.62",
30
30
  "@types/minimist": "^1.2.5",
31
31
  "@types/node": "^24.0.0",
32
32
  "@vitest/coverage-v8": "3.2.4",
@@ -69,5 +69,5 @@
69
69
  "url": "https://github.com/esmnext/esmx/issues"
70
70
  },
71
71
  "homepage": "https://github.com/esmnext/esmx#readme",
72
- "gitHead": "615e91c617e0a58796c591643c6a2e1d2a1f0a76"
72
+ "gitHead": "e5a1e811403bf1db4437dff88c3ea8bc6b576f64"
73
73
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "{{projectName}}",
3
3
  "version": "1.0.0",
4
- "description": "Shared modules for the project",
4
+ "description": "Shared modules solution for micro-frontend architecture",
5
5
  "type": "module",
6
6
  "private": true,
7
7
  "scripts": {
@@ -11,8 +11,8 @@ export default {
11
11
  // ========== Vue framework shared module configuration ==========
12
12
  // Business code: import Vue from 'vue' (defaults to Vue 3, shared from common modules)
13
13
  vue: {
14
- client: 'pkg:vue/dist/vue.runtime.esm-browser.js', // Vue 3 production
15
- server: 'pkg:vue/dist/vue.runtime.esm-browser.prod.js' // Vue 3 development
14
+ client: 'pkg:vue/dist/vue.runtime.esm-browser.prod.js', // Vue 3 production
15
+ server: 'pkg:vue/dist/vue.runtime.esm-browser.js' // Vue 3 development
16
16
  },
17
17
  'vue/index': 'root:src/vue/index.ts',
18
18
  '@esmx/router-vue': 'pkg:@esmx/router-vue', // Vue 3 router
@@ -177,28 +177,6 @@ export default async (rc: RenderContext) => {
177
177
  100% { transform: rotate(360deg); }
178
178
  }
179
179
 
180
- .consistency-animation {
181
- animation: highlight 2s ease-in-out;
182
- }
183
-
184
- @keyframes highlight {
185
- 0%, 100% {
186
- background: white;
187
- box-shadow: 0 10px 30px rgba(0,0,0,0.2);
188
- }
189
- 25% {
190
- background: #d4edda;
191
- box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
192
- }
193
- 50% {
194
- background: white;
195
- box-shadow: 0 10px 30px rgba(0,0,0,0.2);
196
- }
197
- 75% {
198
- background: #d4edda;
199
- box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
200
- }
201
- }
202
180
 
203
181
  .tech-info {
204
182
  background: white;