@jeffchi/logger 1.1.11-rc.2 → 2.0.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.
Files changed (1) hide show
  1. package/package.json +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jeffchi/logger",
3
- "version": "1.1.11-rc.2",
3
+ "version": "2.0.0",
4
4
  "main": "lib/index.cjs",
5
5
  "module": "lib/index.mjs",
6
6
  "types": "lib/index.d.ts",
@@ -28,7 +28,7 @@
28
28
  "clear": "rm -rf lib/ docs/",
29
29
  "doc": "typedoc --options typedoc.json",
30
30
  "dev": "rollup -c --watch",
31
- "build": "npm run clear && npm run doc && rollup -c",
31
+ "build": "npm run clear && rollup -c",
32
32
  "prepare": "npm run build",
33
33
  "format": "prettier --write \"src/**/*.ts\"",
34
34
  "lint": "tslint -p tsconfig.json",
@@ -37,13 +37,13 @@
37
37
  "preversion": "npm run lint",
38
38
  "version": "npm run format && git add .",
39
39
  "postversion": "git push && git push --tags",
40
- "prerelease": "npm run lint && npm run format && npm run doc",
40
+ "prerelease": "npm run lint && npm run format && git add .",
41
41
  "release": "standard-version",
42
42
  "postrelease": "git push --follow-tags && npm publish",
43
- "prerelease:alpha": "npm run lint && npm run format && npm run doc",
43
+ "prerelease:alpha": "npm run lint && npm run format",
44
44
  "release:alpha": "standard-version --prerelease alpha",
45
45
  "postrelease:alpha": "git push --follow-tags && npm publish --tag alpha",
46
- "prerelease:rc": "npm run lint && npm run format && npm run doc",
46
+ "prerelease:rc": "npm run lint && npm run format",
47
47
  "release:rc": "standard-version --prerelease rc",
48
48
  "postrelease:rc": "git push --follow-tags && npm publish --tag rc",
49
49
  "release:major": "npm run release -- --release-as major",