@heathenjs/taro-router-plugin 1.0.0 → 1.0.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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +12 -10
package/dist/index.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
|
-
const taro_router_generator_1 = require("@
|
|
6
|
+
const taro_router_generator_1 = require("@heathenjs/taro-router-generator");
|
|
7
7
|
const generate_app_config_1 = require("./generate-app-config");
|
|
8
8
|
const path_1 = __importDefault(require("path"));
|
|
9
9
|
const fs_1 = __importDefault(require("fs"));
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;AAAA,4EAA6D;AAE7D,+DAA0D;AAE1D,gDAAwB;AACxB,4CAAoB;AAEpB,MAAM,gBAAgB,GAAG,oBAAoB,CAAC;AAE9C,kBAAe,CAAC,GAAmB,EAAE,EAAE;;IACrC,MAAM,cAAc,GAAG,cAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,KAAK,gBAAgB,EAAE,CAAC,CAAC;IAE5E,MAAM,iBAAiB,GAAG,YAAE,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC;IAExD,IAAI,MAAM,GAAW,EAAY,CAAC;IAClC,IAAI,iBAAiB,EAAE,CAAC;QACtB,MAAM,YAAY,GAAG,YAAE,CAAC,YAAY,CAAC,cAAc,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,CAAC,CAAC;QAE3E,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;IACpC,CAAC;SAAM,CAAC;QACN,MAAM,OAAO,cAAc,gBAAgB,CAAC;IAC9C,CAAC;IAED,MAAM,CAAC,QAAQ,GAAG,MAAA,MAAM,CAAC,QAAQ,mCAAI,EAAE,CAAC;IACxC,MAAM,CAAC,MAAM,GAAG,MAAA,MAAM,CAAC,MAAM,mCAAI,CAAC,WAAW,CAAC,CAAC;IAE/C,GAAG,CAAC,YAAY,CAAC,GAAG,EAAE;QACpB,MAAM,SAAS,GAAG,IAAI,iCAAS,CAAC,MAAM,CAAC,CAAC;QACxC,SAAS,CAAC,cAAc,EAAE,CAAC;QAE3B,GAAG,CAAC,eAAe,CAAC,CAAC,EAAE,SAAS,EAAE,EAAE,EAAE;YACpC,MAAM,CAAC,MAAM,CACX,SAAS,EACT,IAAA,uCAAiB,EAAC,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,CAAC,QAAQ,EAAE,EAAE,eAAe,EAAE,SAAS,CAAC,kBAAkB,EAAE,EAAE,CAAC,CAC5G,CAAC;QACJ,CAAC,CAAC,CAAC;QAEH,OAAO,CAAC,GAAG,EAAE,CAAC;IAChB,CAAC,CAAC,CAAC;AACL,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heathenjs/taro-router-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"prod": "tsc -p ./tsconfig.json",
|
|
8
|
-
"clean": "rimraf dist",
|
|
9
|
-
"build": "pnpm run clean && pnpm run prod",
|
|
10
|
-
"tsc": "tsc -p ./tsconfig.json --noEmit",
|
|
11
|
-
"lint": "eslint --ext .ts --max-warnings 0 \"./src\" "
|
|
12
|
-
},
|
|
13
6
|
"keywords": [],
|
|
14
7
|
"author": "",
|
|
15
8
|
"license": "ISC",
|
|
16
9
|
"peerDependencies": {
|
|
17
|
-
"@heathenjs/taro-router-generator": "workspace:*",
|
|
18
10
|
"@tarojs/service": "^3.6.35",
|
|
19
11
|
"@tarojs/taro": "^3.6.35"
|
|
12
|
+
},
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@heathenjs/taro-router-generator": "1.0.3"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"prod": "tsc -p ./tsconfig.json",
|
|
18
|
+
"clean": "rimraf dist",
|
|
19
|
+
"build": "pnpm run clean && pnpm run prod",
|
|
20
|
+
"tsc": "tsc -p ./tsconfig.json --noEmit",
|
|
21
|
+
"lint": "eslint --ext .ts --max-warnings 0 \"./src\" "
|
|
20
22
|
}
|
|
21
|
-
}
|
|
23
|
+
}
|