@skillswaveca/nova-shared-libraries 3.2.1 → 3.3.1

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.
@@ -36,4 +36,4 @@ jobs:
36
36
  env:
37
37
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
38
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
39
- run: pnpm release-it
39
+ run: pnpm release-it --ci
package/.release-it.json CHANGED
@@ -7,7 +7,7 @@
7
7
  },
8
8
  "npm": {
9
9
  "publish": true,
10
- "publishCommand": "pnpm publish --access public",
10
+ "publishCommand": "pnpm -r publish --access public",
11
11
  "tag": false
12
12
  },
13
13
  "github": {
@@ -23,21 +23,9 @@
23
23
  "git add .",
24
24
  "git commit -m 'chore: bump version to ${version.version}'",
25
25
  "echo 'Version bump commit done'"
26
- ],
26
+ ]
27
27
 
28
28
 
29
- "before:changelog": "echo 'Before generating changelog'",
30
- "after:changelog": "echo 'Changelog generated'",
31
- "before:git:commit": "echo 'Before git commit'",
32
- "after:git:commit": "echo 'After git commit'",
33
- "before:git:tag": "echo 'Before git tag'",
34
- "after:git:tag": "echo 'After git tag'",
35
- "before:git:push": "echo 'Before git push'",
36
- "after:git:push": "echo 'After git push'",
37
- "before:github:release": "echo 'Before GitHub release'",
38
- "after:github:release": "echo 'After GitHub release'",
39
- "before:npm:publish": "echo 'Before npm publish'",
40
- "after:npm:publish": "echo 'After npm publish'"
41
29
  },
42
30
  "plugins": {
43
31
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
 
2
2
 
3
+ ## 3.3.1 (2024-05-17)
4
+
5
+ # [3.3.0](https://github.com/SkillsWave/nova-shared-libraries/compare/v...v${version.version}) (2024-05-17)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * release-it config ([5a86c9e](https://github.com/SkillsWave/nova-shared-libraries/commit/5a86c9e2bf182e2276f1f5bfc9774b289c2a2a39))
11
+
3
12
  ## [3.2.1](https://github.com/SkillsWave/nova-shared-libraries/compare/v...v${version.version}) (2024-05-17)
4
13
 
5
14
  # 3.2.0 (2024-05-17)
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "@skillswaveca/nova-shared-libraries",
4
4
  "description": "A monorepo of shared libraries for Nova projects.",
5
5
  "repository": "https://github.com/SkillsWave/nova-shared-libraries",
6
- "version": "3.2.1",
6
+ "version": "3.3.1",
7
7
  "main": "index.js",
8
8
  "scripts": {
9
9
  "release": "pnpm run bump-version && pnpm run create-index",