@jeffchi/logger 4.2.3 → 4.3.1-beta.0
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/package.json +7 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jeffchi/logger",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.1-beta.0",
|
|
4
4
|
"main": "lib/index.cjs",
|
|
5
5
|
"module": "lib/index.mjs",
|
|
6
6
|
"browser": "lib/index.cjs",
|
|
@@ -33,6 +33,12 @@
|
|
|
33
33
|
"dev": "rollup -c --watch",
|
|
34
34
|
"build": "npm run clear && rollup -c",
|
|
35
35
|
"prepare": "husky install",
|
|
36
|
+
"changelog": "standard-version --dry-run",
|
|
37
|
+
"release:alpha": "standard-version --prerelease alpha",
|
|
38
|
+
"release:beta": "standard-version --prerelease beta",
|
|
39
|
+
"release:rc": "standard-version --prerelease rc",
|
|
40
|
+
"release": "standard-version",
|
|
41
|
+
"prepublishOnly": "npm test && npm run build",
|
|
36
42
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
37
43
|
"lint": "tslint -p tsconfig.json",
|
|
38
44
|
"test": "jest --config jestconfig.json",
|