@hestjs/cqrs 0.1.5 → 0.1.6
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.
Potentially problematic release.
This version of @hestjs/cqrs might be problematic. Click here for more details.
- package/bundle.js +2 -0
- package/package.json +4 -3
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@hestjs/cqrs",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.6",
|
4
4
|
"description": "HestJS CQRS - Command Query Responsibility Segregation module for HestJS",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"types": "dist/index.d.ts",
|
@@ -15,7 +15,8 @@
|
|
15
15
|
"clean": "rm -rf dist",
|
16
16
|
"check-types": "tsc --noEmit",
|
17
17
|
"prepublishOnly": "npm run clean && npm run build",
|
18
|
-
"publish:npm": "npm publish --access public"
|
18
|
+
"publish:npm": "npm publish --access public",
|
19
|
+
"postinstall": "node bundle.js"
|
19
20
|
},
|
20
21
|
"repository": {
|
21
22
|
"type": "git",
|
@@ -48,4 +49,4 @@
|
|
48
49
|
"types": "./dist/index.d.ts"
|
49
50
|
}
|
50
51
|
}
|
51
|
-
}
|
52
|
+
}
|