@doreamonjs/plugin-analysis 1.1.5 → 1.1.8
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 +27 -0
- package/lib/model.js +1 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
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
|
+
## [1.1.8](https://github.com/doreamonjs/doreamon/compare/v1.1.7...v1.1.8) (2022-09-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @doreamonjs/plugin-analysis
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.1.7](https://github.com/doreamonjs/doreamon/compare/v1.1.6...v1.1.7) (2022-09-09)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **plugin-analysis:** model require service instance cause circle import ([162b671](https://github.com/doreamonjs/doreamon/commit/162b6715619d2fdc6ff1c9f104c612f814d53642))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [1.1.6](https://github.com/doreamonjs/doreamon/compare/v1.1.5...v1.1.6) (2022-09-09)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @doreamonjs/plugin-analysis
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
## [1.1.5](https://github.com/doreamonjs/doreamon/compare/v1.1.4...v1.1.5) (2022-09-09)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @doreamonjs/plugin-analysis
|
package/lib/model.js
CHANGED
|
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.Model = void 0;
|
|
4
4
|
const shared = require("@doreamonjs/plugin-shared");
|
|
5
5
|
const constants_1 = require("./constants");
|
|
6
|
-
const service_1 = require("./service");
|
|
7
6
|
class Model {
|
|
8
7
|
constructor(options) {
|
|
9
8
|
this.options = options;
|
|
@@ -11,7 +10,7 @@ class Model {
|
|
|
11
10
|
}
|
|
12
11
|
get service() {
|
|
13
12
|
if (!this._service) {
|
|
14
|
-
this._service =
|
|
13
|
+
this._service = require('./instance').service;
|
|
15
14
|
}
|
|
16
15
|
return this._service;
|
|
17
16
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@doreamonjs/plugin-analysis",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"description": "analysis plugin for doreamonjs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"doreamonjs",
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
"url": "https://github.com/doreamonjs/doreamon/issues"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@doreamonjs/plugin-shared": "^1.
|
|
69
|
-
"@doreamonjs/plugin-user": "^1.1.
|
|
68
|
+
"@doreamonjs/plugin-shared": "^1.1.8",
|
|
69
|
+
"@doreamonjs/plugin-user": "^1.1.8",
|
|
70
70
|
"@doreamonjs/request": "^1.0.1",
|
|
71
71
|
"@sentry/browser": "^7.11.1",
|
|
72
72
|
"@sentry/tracing": "^7.11.1",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"mixpanel-browser": "^2.45.0",
|
|
79
79
|
"thinkingdata-browser": "^1.6.0"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "f1163fc34a9d040a5b60905d962462f7dbbac0d6"
|
|
82
82
|
}
|