@midwayjs/bootstrap 2.12.9 → 2.13.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/CHANGELOG.md CHANGED
@@ -3,6 +3,41 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.13.3](https://github.com/midwayjs/midway/compare/v2.13.2...v2.13.3) (2021-09-28)
7
+
8
+ **Note:** Version bump only for package @midwayjs/bootstrap
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.13.2](https://github.com/midwayjs/midway/compare/v2.13.1...v2.13.2) (2021-09-09)
15
+
16
+ **Note:** Version bump only for package @midwayjs/bootstrap
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.13.1](https://github.com/midwayjs/midway/compare/v2.13.0...v2.13.1) (2021-09-08)
23
+
24
+ **Note:** Version bump only for package @midwayjs/bootstrap
25
+
26
+
27
+
28
+
29
+
30
+ # [2.13.0](https://github.com/midwayjs/midway/compare/v2.12.9...v2.13.0) (2021-09-07)
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * can't found id in test case ([#1274](https://github.com/midwayjs/midway/issues/1274)) ([9bd1b96](https://github.com/midwayjs/midway/commit/9bd1b96d02ea08f6f1c80f5cef9f68a605cea2ca))
36
+
37
+
38
+
39
+
40
+
6
41
  ## [2.12.9](https://github.com/midwayjs/midway/compare/v2.12.8...v2.12.9) (2021-09-01)
7
42
 
8
43
  **Note:** Version bump only for package @midwayjs/bootstrap
package/dist/bootstrap.js CHANGED
@@ -134,10 +134,10 @@ class BootstrapStarter {
134
134
  return this.globalOptions.baseDir;
135
135
  }
136
136
  if (isTypeScriptEnvironment()) {
137
- return path_1.join(this.appDir, 'src');
137
+ return (0, path_1.join)(this.appDir, 'src');
138
138
  }
139
139
  else {
140
- return path_1.join(this.appDir, 'dist');
140
+ return (0, path_1.join)(this.appDir, 'dist');
141
141
  }
142
142
  }
143
143
  getBootstrapAppMap() {
@@ -154,7 +154,7 @@ class Bootstrap {
154
154
  var _a;
155
155
  this.configured = true;
156
156
  if (!this.logger && !configuration.logger) {
157
- this.logger = logger_1.createConsoleLogger('bootstrapConsole');
157
+ this.logger = (0, logger_1.createConsoleLogger)('bootstrapConsole');
158
158
  if (configuration.logger === false) {
159
159
  (_a = this.logger) === null || _a === void 0 ? void 0 : _a['disableConsole']();
160
160
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@midwayjs/bootstrap",
3
- "version": "2.12.9",
3
+ "version": "2.13.3",
4
4
  "description": "midwayjs bootstrap",
5
5
  "main": "dist/index",
6
6
  "typings": "dist/index.d.ts",
@@ -21,9 +21,9 @@
21
21
  ],
22
22
  "license": "MIT",
23
23
  "devDependencies": {
24
- "@midwayjs/core": "^2.12.9",
25
- "@midwayjs/decorator": "^2.12.9",
26
- "@midwayjs/logger": "^2.11.3",
24
+ "@midwayjs/core": "^2.13.3",
25
+ "@midwayjs/decorator": "^2.13.2",
26
+ "@midwayjs/logger": "^2.13.0",
27
27
  "@types/socket.io-client": "^1.4.36",
28
28
  "request": "^2.88.2",
29
29
  "socket.io-client": "^4.0.0"
@@ -33,5 +33,5 @@
33
33
  "type": "git",
34
34
  "url": "http://github.com/midwayjs/midway.git"
35
35
  },
36
- "gitHead": "f43ea420fd98164a5e06c3fb3f31588203a9897e"
36
+ "gitHead": "30f63af0d6560421b36f31064cb20b13a53b5afb"
37
37
  }