@w5s/conventional-changelog 1.0.0-alpha.5 → 1.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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +7 -20
package/README.md CHANGED
@@ -51,7 +51,7 @@ Ensure the `commitlint` is setup on husky commit message hook (default `.husky/c
51
51
  ```console
52
52
  commitlint --edit $1
53
53
  # -OR-
54
- npm exec --no -- commitlint --edit $1
54
+ npm exec -- commitlint --edit $1
55
55
  ```
56
56
 
57
57
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/conventional-changelog",
3
- "version": "1.0.0-alpha.5",
3
+ "version": "1.0.0",
4
4
  "description": "Conventional changelog plugin for @w5s",
5
5
  "keywords": [],
6
6
  "homepage": "https://github.com/w5s/project-config/blob/main/packages/conventional-changelog#readme",
@@ -42,22 +42,8 @@
42
42
  "prepare": "concurrently \"npm:prepare:*\" \":\"",
43
43
  "prepublishOnly": "npm run clean;npm run build",
44
44
  "spellcheck": "cspell --no-progress '**'",
45
- "test": "concurrently \"npm:test:*\" ",
46
- "test:src": "jest"
47
- },
48
- "jest": {
49
- "moduleNameMapper": {
50
- "^(\\.{1,2}/.*)\\.js$": "$1"
51
- },
52
- "preset": "es-jest",
53
- "testPathIgnorePatterns": [
54
- "/node_modules/",
55
- "/lib/",
56
- "/build/",
57
- "/.cache/",
58
- "/docs/",
59
- "/public/"
60
- ]
45
+ "test": "concurrently \"npm:test:*\" \":\"",
46
+ "test:src": "vitest run"
61
47
  },
62
48
  "dependencies": {
63
49
  "@commitlint/types": "^17.0.0",
@@ -65,9 +51,10 @@
65
51
  "gitmojis": "^3.13.4"
66
52
  },
67
53
  "devDependencies": {
68
- "@jest/globals": "29.4.3",
69
54
  "@types/conventional-changelog-writer": "4.0.2",
70
- "@types/conventional-commits-parser": "3.0.3"
55
+ "@types/conventional-commits-parser": "3.0.3",
56
+ "vite": "4.1.4",
57
+ "vitest": "0.29.2"
71
58
  },
72
59
  "engines": {
73
60
  "node": ">=16.0.0"
@@ -75,5 +62,5 @@
75
62
  "publishConfig": {
76
63
  "access": "public"
77
64
  },
78
- "gitHead": "28afedf566a7a99dd040fffc8ef6d548056c62d0"
65
+ "gitHead": "20f944de90b5a5c30d6446ced65271ea3fd31c99"
79
66
  }