@shellui/cli 0.0.20 → 0.0.21
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 +2 -2
- package/src/utils/vite.js +1 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shellui/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21",
|
|
4
4
|
"description": "ShellUI CLI - Command-line tool for ShellUI",
|
|
5
5
|
"main": "src/cli.js",
|
|
6
6
|
"type": "module",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"tsx": "^4.21.0",
|
|
31
31
|
"vite": "7.3.1",
|
|
32
32
|
"workbox-build": "^7.1.0",
|
|
33
|
-
"@shellui/core": "0.0.
|
|
33
|
+
"@shellui/core": "0.0.21"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
package/src/utils/vite.js
CHANGED
|
@@ -41,12 +41,9 @@ export function getCoreSrcPath() {
|
|
|
41
41
|
* @returns {Object} Vite resolve.alias object
|
|
42
42
|
*/
|
|
43
43
|
export function createResolveAlias() {
|
|
44
|
-
const corePackagePath = resolvePackagePath('@shellui/core');
|
|
45
44
|
const sdkEntry = resolveSdkEntry();
|
|
46
45
|
|
|
47
|
-
const alias = {
|
|
48
|
-
'@': path.join(corePackagePath, 'src'),
|
|
49
|
-
};
|
|
46
|
+
const alias = {};
|
|
50
47
|
|
|
51
48
|
if (sdkEntry) {
|
|
52
49
|
alias['@shellui/sdk'] = sdkEntry;
|