@dcloudio/uni-cli-shared 3.0.0-alpha-3060720221018006 → 3.0.0-alpha-3060820221026001

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/dist/hbx/env.js CHANGED
@@ -21,7 +21,8 @@ exports.isInHBuilderX = (0, uni_shared_1.once)(() => {
21
21
  return false;
22
22
  });
23
23
  exports.runByHBuilderX = (0, uni_shared_1.once)(() => {
24
- return !!process.env.UNI_HBUILDERX_PLUGINS && !!process.env.RUN_BY_HBUILDERX;
24
+ return (!!process.env.UNI_HBUILDERX_PLUGINS &&
25
+ (!!process.env.RUN_BY_HBUILDERX || !!process.env.HX_Version));
25
26
  });
26
27
  /**
27
28
  * 增加 node_modules
package/dist/index.d.ts CHANGED
@@ -5,6 +5,7 @@ export * from './env';
5
5
  export * from './hbx';
6
6
  export * from './ssr';
7
7
  export * from './vue';
8
+ export * from './uts';
8
9
  export * from './logs';
9
10
  export * from './i18n';
10
11
  export * from './deps';
package/dist/index.js CHANGED
@@ -22,6 +22,7 @@ __exportStar(require("./env"), exports);
22
22
  __exportStar(require("./hbx"), exports);
23
23
  __exportStar(require("./ssr"), exports);
24
24
  __exportStar(require("./vue"), exports);
25
+ __exportStar(require("./uts"), exports);
25
26
  __exportStar(require("./logs"), exports);
26
27
  __exportStar(require("./i18n"), exports);
27
28
  __exportStar(require("./deps"), exports);
@@ -8,7 +8,7 @@ function initCheckSystemWebview(manifestJson) {
8
8
  manifestJson.plus['uni-app'].webView = plusWebView;
9
9
  delete manifestJson.plus.webView;
10
10
  }
11
- if (process.env.NODE_ENV === 'development' && !plusWebView) {
11
+ else {
12
12
  manifestJson.plus['uni-app'].webView = {
13
13
  minUserAgentVersion: '49.0',
14
14
  };
package/dist/resolve.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import * as UTSCompiler from '@dcloudio/uni-uts-v1';
2
1
  export declare function requireResolve(filename: string, basedir: string): string;
3
2
  export declare function relativeFile(from: string, to: string): string;
4
3
  export declare const resolveMainPathOnce: (inputDir: string) => string;
@@ -6,13 +5,3 @@ export declare function getBuiltInPaths(): string[];
6
5
  export declare function resolveBuiltIn(path: string): string;
7
6
  export declare function resolveVueI18nRuntime(): string;
8
7
  export declare function resolveComponentsLibPath(): string;
9
- /**
10
- * 解析 app 平台的 uts 插件,任意平台(android|ios)存在即可
11
- * @param id
12
- * @param importer
13
- * @returns
14
- */
15
- export declare function resolveUtsAppModule(id: string, importer: string): string | undefined;
16
- export declare function resolveUtsModuleProxyFile(id: string, importer: string): string | undefined;
17
- export declare function resolveUtsModule(id: string, importer: string, platform: typeof process.env.UNI_UTS_PLATFORM): string | undefined;
18
- export declare function resolveUTSCompiler(): typeof UTSCompiler;
package/dist/resolve.js CHANGED
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.resolveUTSCompiler = exports.resolveUtsModule = exports.resolveUtsModuleProxyFile = exports.resolveUtsAppModule = exports.resolveComponentsLibPath = exports.resolveVueI18nRuntime = exports.resolveBuiltIn = exports.getBuiltInPaths = exports.resolveMainPathOnce = exports.relativeFile = exports.requireResolve = void 0;
6
+ exports.resolveComponentsLibPath = exports.resolveVueI18nRuntime = exports.resolveBuiltIn = exports.getBuiltInPaths = exports.resolveMainPathOnce = exports.relativeFile = exports.requireResolve = void 0;
7
7
  const fs_1 = __importDefault(require("fs"));
8
8
  const path_1 = __importDefault(require("path"));
9
9
  const debug_1 = __importDefault(require("debug"));
@@ -104,96 +104,3 @@ function resolveComponentsLibPath() {
104
104
  return componentsLibPath;
105
105
  }
106
106
  exports.resolveComponentsLibPath = resolveComponentsLibPath;
107
- /**
108
- * 解析 app 平台的 uts 插件,任意平台(android|ios)存在即可
109
- * @param id
110
- * @param importer
111
- * @returns
112
- */
113
- function resolveUtsAppModule(id, importer) {
114
- id = path_1.default.resolve(importer, id);
115
- if (id.includes('utssdk') || id.includes('uni_modules')) {
116
- const parts = (0, utils_1.normalizePath)(id).split('/');
117
- const parentDir = parts[parts.length - 2];
118
- if (parentDir === 'uni_modules' || parentDir === 'utssdk') {
119
- const basedir = parentDir === 'uni_modules' ? 'utssdk' : '';
120
- if (fs_1.default.existsSync(path_1.default.resolve(id, basedir, 'index.uts'))) {
121
- return id;
122
- }
123
- const resolvePlatformDir = (p) => {
124
- return path_1.default.resolve(id, basedir, p);
125
- };
126
- const extname = ['.uts'];
127
- if (resolveUtsFile(resolvePlatformDir('app-android'), extname)) {
128
- return id;
129
- }
130
- if (resolveUtsFile(resolvePlatformDir('app-ios'), extname)) {
131
- return id;
132
- }
133
- }
134
- }
135
- }
136
- exports.resolveUtsAppModule = resolveUtsAppModule;
137
- function resolveUtsModuleProxyFile(id, importer) {
138
- const file = resolveUtsAppModule(id, importer);
139
- if (file) {
140
- return '\0' + file + '?uts-proxy';
141
- }
142
- }
143
- exports.resolveUtsModuleProxyFile = resolveUtsModuleProxyFile;
144
- // 仅限 root/uni_modules/test-plugin | root/utssdk/test-plugin 格式
145
- function resolveUtsModule(id, importer, platform) {
146
- if (process.env.UNI_PLATFORM === 'app') {
147
- return resolveUtsAppModule(id, importer);
148
- }
149
- id = path_1.default.resolve(importer, id);
150
- if (id.includes('utssdk') || id.includes('uni_modules')) {
151
- const parts = (0, utils_1.normalizePath)(id).split('/');
152
- const parentDir = parts[parts.length - 2];
153
- if (parentDir === 'uni_modules' || parentDir === 'utssdk') {
154
- const basedir = parentDir === 'uni_modules' ? 'utssdk' : '';
155
- const resolvePlatformDir = (p) => {
156
- return path_1.default.resolve(id, basedir, p);
157
- };
158
- let index = resolveUtsFile(resolvePlatformDir(platform));
159
- if (index) {
160
- return index;
161
- }
162
- index = path_1.default.resolve(id, basedir, 'index.uts');
163
- if (fs_1.default.existsSync(index)) {
164
- return index;
165
- }
166
- }
167
- }
168
- }
169
- exports.resolveUtsModule = resolveUtsModule;
170
- function resolveUtsFile(dir, extensions = ['.uts', '.ts', '.js']) {
171
- for (let i = 0; i < extensions.length; i++) {
172
- const indexFile = path_1.default.join(dir, 'index' + extensions[i]);
173
- if (fs_1.default.existsSync(indexFile)) {
174
- return indexFile;
175
- }
176
- }
177
- }
178
- function resolveUTSCompiler() {
179
- let compilerPath = '';
180
- if ((0, env_1.isInHBuilderX)()) {
181
- try {
182
- compilerPath = require.resolve(path_1.default.resolve(process.env.UNI_HBUILDERX_PLUGINS, 'uniapp-uts'));
183
- }
184
- catch (e) { }
185
- }
186
- if (!compilerPath) {
187
- try {
188
- compilerPath = require.resolve('@dcloudio/uni-uts-v1', {
189
- paths: [process.env.UNI_CLI_CONTEXT],
190
- });
191
- }
192
- catch (e) { }
193
- }
194
- if (!compilerPath) {
195
- throw 'uts compiler is not found';
196
- }
197
- return require(compilerPath);
198
- }
199
- exports.resolveUTSCompiler = resolveUTSCompiler;
@@ -25,10 +25,7 @@ function parseUniExtApis(vite = true) {
25
25
  }
26
26
  const exports = (_b = (_a = JSON.parse(fs_extra_1.default.readFileSync(pkgPath, 'utf8'))) === null || _a === void 0 ? void 0 : _a.uni_modules) === null || _b === void 0 ? void 0 : _b['uni-ext-api'];
27
27
  if (exports) {
28
- Object.assign(injects, parseInjects(vite, process.env.UNI_PLATFORM === 'h5' ? 'web' : process.env.UNI_PLATFORM, `@/uni_modules/${uniModuleDir}` +
29
- (vite || !process.env.UNI_UTS_PLATFORM
30
- ? ''
31
- : `/utssdk/${process.env.UNI_UTS_PLATFORM}/index`), exports));
28
+ Object.assign(injects, parseInjects(vite, process.env.UNI_PLATFORM === 'h5' ? 'web' : process.env.UNI_PLATFORM, `@/uni_modules/${uniModuleDir}`, exports));
32
29
  }
33
30
  });
34
31
  return injects;
package/dist/uts.d.ts ADDED
@@ -0,0 +1,10 @@
1
+ import * as UTSCompiler from '@dcloudio/uni-uts-v1';
2
+ /**
3
+ * 解析 app 平台的 uts 插件,任意平台(android|ios)存在即可
4
+ * @param id
5
+ * @param importer
6
+ * @returns
7
+ */
8
+ export declare function resolveUtsAppModule(id: string, importer: string): string | undefined;
9
+ export declare function resolveUtsModule(id: string, importer: string): string | undefined;
10
+ export declare function resolveUTSCompiler(): typeof UTSCompiler;
package/dist/uts.js ADDED
@@ -0,0 +1,97 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.resolveUTSCompiler = exports.resolveUtsModule = exports.resolveUtsAppModule = void 0;
7
+ const fs_1 = __importDefault(require("fs"));
8
+ const path_1 = __importDefault(require("path"));
9
+ const hbx_1 = require("./hbx");
10
+ const utils_1 = require("./utils");
11
+ /**
12
+ * 解析 app 平台的 uts 插件,任意平台(android|ios)存在即可
13
+ * @param id
14
+ * @param importer
15
+ * @returns
16
+ */
17
+ function resolveUtsAppModule(id, importer) {
18
+ id = path_1.default.resolve(importer, id);
19
+ if (id.includes('utssdk') || id.includes('uni_modules')) {
20
+ const parts = (0, utils_1.normalizePath)(id).split('/');
21
+ const parentDir = parts[parts.length - 2];
22
+ if (parentDir === 'uni_modules' || parentDir === 'utssdk') {
23
+ const basedir = parentDir === 'uni_modules' ? 'utssdk' : '';
24
+ if (fs_1.default.existsSync(path_1.default.resolve(id, basedir, 'index.uts'))) {
25
+ return id;
26
+ }
27
+ const resolvePlatformDir = (p) => {
28
+ return path_1.default.resolve(id, basedir, p);
29
+ };
30
+ const extname = ['.uts'];
31
+ if (resolveUtsFile(resolvePlatformDir('app-android'), extname)) {
32
+ return id;
33
+ }
34
+ if (resolveUtsFile(resolvePlatformDir('app-ios'), extname)) {
35
+ return id;
36
+ }
37
+ }
38
+ }
39
+ }
40
+ exports.resolveUtsAppModule = resolveUtsAppModule;
41
+ // 仅限 root/uni_modules/test-plugin | root/utssdk/test-plugin 格式
42
+ function resolveUtsModule(id, importer) {
43
+ if (process.env.UNI_PLATFORM === 'app' ||
44
+ process.env.UNI_PLATFORM === 'app-plus') {
45
+ return resolveUtsAppModule(id, importer);
46
+ }
47
+ id = path_1.default.resolve(importer, id);
48
+ if (id.includes('utssdk') || id.includes('uni_modules')) {
49
+ const parts = (0, utils_1.normalizePath)(id).split('/');
50
+ const parentDir = parts[parts.length - 2];
51
+ if (parentDir === 'uni_modules' || parentDir === 'utssdk') {
52
+ const basedir = parentDir === 'uni_modules' ? 'utssdk' : '';
53
+ const resolvePlatformDir = (p) => {
54
+ return path_1.default.resolve(id, basedir, p);
55
+ };
56
+ let index = resolveUtsFile(resolvePlatformDir(process.env.UNI_UTS_PLATFORM));
57
+ if (index) {
58
+ return index;
59
+ }
60
+ index = path_1.default.resolve(id, basedir, 'index.uts');
61
+ if (fs_1.default.existsSync(index)) {
62
+ return index;
63
+ }
64
+ }
65
+ }
66
+ }
67
+ exports.resolveUtsModule = resolveUtsModule;
68
+ function resolveUtsFile(dir, extensions = ['.uts', '.ts', '.js']) {
69
+ for (let i = 0; i < extensions.length; i++) {
70
+ const indexFile = path_1.default.join(dir, 'index' + extensions[i]);
71
+ if (fs_1.default.existsSync(indexFile)) {
72
+ return indexFile;
73
+ }
74
+ }
75
+ }
76
+ function resolveUTSCompiler() {
77
+ let compilerPath = '';
78
+ if ((0, hbx_1.isInHBuilderX)()) {
79
+ try {
80
+ compilerPath = require.resolve(path_1.default.resolve(process.env.UNI_HBUILDERX_PLUGINS, 'uniapp-uts-v1'));
81
+ }
82
+ catch (e) { }
83
+ }
84
+ if (!compilerPath) {
85
+ try {
86
+ compilerPath = require.resolve('@dcloudio/uni-uts-v1', {
87
+ paths: [process.env.UNI_CLI_CONTEXT],
88
+ });
89
+ }
90
+ catch (e) { }
91
+ }
92
+ if (!compilerPath) {
93
+ throw 'uts compiler is not found';
94
+ }
95
+ return require(compilerPath);
96
+ }
97
+ exports.resolveUTSCompiler = resolveUTSCompiler;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcloudio/uni-cli-shared",
3
- "version": "3.0.0-alpha-3060720221018006",
3
+ "version": "3.0.0-alpha-3060820221026001",
4
4
  "description": "@dcloudio/uni-cli-shared",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -25,8 +25,8 @@
25
25
  "@babel/core": "^7.18.13",
26
26
  "@babel/parser": "^7.18.13",
27
27
  "@babel/types": "^7.17.0",
28
- "@dcloudio/uni-i18n": "3.0.0-alpha-3060720221018006",
29
- "@dcloudio/uni-shared": "3.0.0-alpha-3060720221018006",
28
+ "@dcloudio/uni-i18n": "3.0.0-alpha-3060820221026001",
29
+ "@dcloudio/uni-shared": "3.0.0-alpha-3060820221026001",
30
30
  "@intlify/core-base": "9.1.9",
31
31
  "@intlify/shared": "9.1.9",
32
32
  "@intlify/vue-devtools": "9.1.9",
@@ -64,7 +64,7 @@
64
64
  },
65
65
  "gitHead": "33e807d66e1fe47e2ee08ad9c59247e37b8884da",
66
66
  "devDependencies": {
67
- "@dcloudio/uni-uts-v1": "3.0.0-alpha-3060720221018006",
67
+ "@dcloudio/uni-uts-v1": "3.0.0-alpha-3060820221026001",
68
68
  "@types/babel__core": "^7.1.19",
69
69
  "@types/debug": "^4.1.7",
70
70
  "@types/estree": "^0.0.51",
package/lib/.DS_Store DELETED
Binary file
Binary file