@tarojs/helper 3.5.0-alpha.0 → 3.5.0-alpha.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/dist/constants.js +3 -3
- package/package.json +3 -3
- package/types/constants.d.ts +3 -3
- package/types/index.d.ts +3 -3
package/dist/constants.js
CHANGED
|
@@ -168,9 +168,9 @@ exports.taroJsMobx = '@tarojs/mobx';
|
|
|
168
168
|
exports.taroJsMobxCommon = '@tarojs/mobx-common';
|
|
169
169
|
exports.DEVICE_RATIO_NAME = 'deviceRatio';
|
|
170
170
|
exports.isWindows = os.platform() === 'win32';
|
|
171
|
-
exports.DEFAULT_TEMPLATE_SRC = 'github:NervJS/taro-project-templates#v3.
|
|
172
|
-
exports.DEFAULT_TEMPLATE_SRC_GITEE = 'direct:https://gitee.com/o2team/taro-project-templates.git#v3.
|
|
173
|
-
exports.TARO_CONFIG_FLODER = '.taro3.
|
|
171
|
+
exports.DEFAULT_TEMPLATE_SRC = 'github:NervJS/taro-project-templates#v3.5';
|
|
172
|
+
exports.DEFAULT_TEMPLATE_SRC_GITEE = 'direct:https://gitee.com/o2team/taro-project-templates.git#v3.5';
|
|
173
|
+
exports.TARO_CONFIG_FLODER = '.taro3.5';
|
|
174
174
|
exports.TARO_BASE_CONFIG = 'index.json';
|
|
175
175
|
exports.OUTPUT_DIR = 'dist';
|
|
176
176
|
exports.SOURCE_DIR = 'src';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/helper",
|
|
3
|
-
"version": "3.5.0-alpha.
|
|
3
|
+
"version": "3.5.0-alpha.3",
|
|
4
4
|
"description": "Taro Helper",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@babel/runtime": "^7.14.5",
|
|
43
43
|
"@swc/core": "^1.2.147",
|
|
44
44
|
"@swc/register": "^0.1.10",
|
|
45
|
-
"@tarojs/taro": "3.5.0-alpha.
|
|
45
|
+
"@tarojs/taro": "3.5.0-alpha.3",
|
|
46
46
|
"chalk": "3.0.0",
|
|
47
47
|
"chokidar": "^3.3.1",
|
|
48
48
|
"cross-spawn": "^7.0.3",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"resolve": "^1.6.0",
|
|
54
54
|
"yauzl": "2.10.0"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "31c8fe1b7ddfd586a21dca05d11fef5314069a69"
|
|
57
57
|
}
|
package/types/constants.d.ts
CHANGED
|
@@ -73,9 +73,9 @@ export declare const taroJsMobx = "@tarojs/mobx";
|
|
|
73
73
|
export declare const taroJsMobxCommon = "@tarojs/mobx-common";
|
|
74
74
|
export declare const DEVICE_RATIO_NAME = "deviceRatio";
|
|
75
75
|
export declare const isWindows: boolean;
|
|
76
|
-
export declare const DEFAULT_TEMPLATE_SRC = "github:NervJS/taro-project-templates#v3.
|
|
77
|
-
export declare const DEFAULT_TEMPLATE_SRC_GITEE = "direct:https://gitee.com/o2team/taro-project-templates.git#v3.
|
|
78
|
-
export declare const TARO_CONFIG_FLODER = ".taro3.
|
|
76
|
+
export declare const DEFAULT_TEMPLATE_SRC = "github:NervJS/taro-project-templates#v3.5";
|
|
77
|
+
export declare const DEFAULT_TEMPLATE_SRC_GITEE = "direct:https://gitee.com/o2team/taro-project-templates.git#v3.5";
|
|
78
|
+
export declare const TARO_CONFIG_FLODER = ".taro3.5";
|
|
79
79
|
export declare const TARO_BASE_CONFIG = "index.json";
|
|
80
80
|
export declare const OUTPUT_DIR = "dist";
|
|
81
81
|
export declare const SOURCE_DIR = "src";
|
package/types/index.d.ts
CHANGED
|
@@ -135,9 +135,9 @@ declare interface helper {
|
|
|
135
135
|
taroJsMobxCommon: "@tarojs/mobx-common";
|
|
136
136
|
DEVICE_RATIO_NAME: "deviceRatio";
|
|
137
137
|
isWindows: boolean;
|
|
138
|
-
DEFAULT_TEMPLATE_SRC: "github:NervJS/taro-project-templates#v3.
|
|
139
|
-
DEFAULT_TEMPLATE_SRC_GITEE: "direct:https://gitee.com/o2team/taro-project-templates.git#v3.
|
|
140
|
-
TARO_CONFIG_FLODER: ".taro3.
|
|
138
|
+
DEFAULT_TEMPLATE_SRC: "github:NervJS/taro-project-templates#v3.5";
|
|
139
|
+
DEFAULT_TEMPLATE_SRC_GITEE: "direct:https://gitee.com/o2team/taro-project-templates.git#v3.5";
|
|
140
|
+
TARO_CONFIG_FLODER: ".taro3.5";
|
|
141
141
|
TARO_BASE_CONFIG: "index.json";
|
|
142
142
|
OUTPUT_DIR: "dist";
|
|
143
143
|
SOURCE_DIR: "src";
|