@ripwords/myinvois-client 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.
- package/CHANGELOG.md +12 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## v0.1.6
|
|
5
|
+
|
|
6
|
+
[compare changes](https://github.com/Ripwords/MyInvoisClient/compare/v0.1.5...v0.1.6)
|
|
7
|
+
|
|
8
|
+
### 🏡 Chore
|
|
9
|
+
|
|
10
|
+
- Update release scripts to ensure consistency by removing 'bun' from publish commands for public access ([4bd352f](https://github.com/Ripwords/MyInvoisClient/commit/4bd352f))
|
|
11
|
+
|
|
12
|
+
### ❤️ Contributors
|
|
13
|
+
|
|
14
|
+
- JJ <teohjjteoh@gmail.com>
|
|
15
|
+
|
|
4
16
|
## v0.1.5
|
|
5
17
|
|
|
6
18
|
[compare changes](https://github.com/Ripwords/MyInvoisClient/compare/v0.1.4...v0.1.5)
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ripwords/myinvois-client",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "MyInvois client",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsdown",
|
|
7
7
|
"prerelease": "bun run lint && bun run build",
|
|
8
8
|
"postrelease": "git push --follow-tags",
|
|
9
9
|
"changelog": "changelogen --release",
|
|
10
|
-
"release": "bun run prerelease && bun run changelog &&
|
|
11
|
-
"release:minor": "bun run prerelease && bun run changelog --minor &&
|
|
12
|
-
"release:major": "bun run prerelease && bun run changelog --major &&
|
|
10
|
+
"release": "bun run prerelease && bun run changelog && npm publish --access public",
|
|
11
|
+
"release:minor": "bun run prerelease && bun run changelog --minor && npm publish --access public",
|
|
12
|
+
"release:major": "bun run prerelease && bun run changelog --major && npm publish --access public",
|
|
13
13
|
"lint": "oxlint",
|
|
14
14
|
"test": "vitest"
|
|
15
15
|
},
|