create-aiot 2.0.1-alpha.2 → 2.0.1-alpha.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.
@@ -1,5 +1,5 @@
1
1
  app MainApp {
2
- onCreate(intent) {
2
+ onCreate(intent: RouteInfo) {
3
3
  console.log('App onCreate.')
4
4
  }
5
5
 
@@ -1,5 +1,5 @@
1
1
  vaspect MainAspect {
2
- onCreate(intent) {
2
+ onCreate(intent: RouteInfo) {
3
3
  console.log('MainAspect onCreate.')
4
4
  }
5
5
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-aiot",
3
- "version": "2.0.1-alpha.2",
3
+ "version": "2.0.1-alpha.4",
4
4
  "description": "An easy way to start aiot project",
5
5
  "main": "lib/index.js",
6
6
  "keywords": [
@@ -27,7 +27,7 @@
27
27
  "test": "node ./__tests__/create-aiot.test.js"
28
28
  },
29
29
  "dependencies": {
30
- "@aiot-toolkit/commander": "2.0.1-alpha.2",
30
+ "@aiot-toolkit/commander": "2.0.1-alpha.4",
31
31
  "ansi-colors": "^4.1.3",
32
32
  "cli-progress": "^3.12.0",
33
33
  "simple-git": "^3.19.1"
@@ -35,5 +35,5 @@
35
35
  "devDependencies": {
36
36
  "@types/cli-progress": "^3.11.0"
37
37
  },
38
- "gitHead": "eb7f99584d40a00b6984345d34f3713250580225"
38
+ "gitHead": "da4d5ab15aa1b8bcde3250a58d6e9a50e098cc20"
39
39
  }
@@ -1,9 +0,0 @@
1
- 生成 xts 项目模板需要注意:
2
- 1、用户输入的英文包名,应用在 app-package-name 目录名 及 /app/manifest.json 中的 package 值;
3
- 2、用户输入的中文包名,应用在 /app/manifest.json 中的 name 值;
4
-
5
- 3、用户输入的英文 aspect 名,应用在
6
- a、aspect1 目录名;
7
- b、/aspect1/config.json 中的 name 值;
8
- c、/aspect1/src/manifest.json 中的 name 值;
9
-