@vixoniccom/news-internal 0.4.21-dev.28 → 0.4.21-dev.30
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/.github/workflows/npm-publish.yml +13 -3
- package/CHANGELOG.md +10 -0
- package/build.zip +0 -0
- package/package.json +2 -2
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
name: Publish to NPM
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
|
-
|
|
4
|
+
pull_request:
|
|
5
5
|
branches:
|
|
6
|
+
- development
|
|
6
7
|
- master
|
|
7
8
|
- main
|
|
9
|
+
workflow_dispatch:
|
|
8
10
|
|
|
9
11
|
jobs:
|
|
10
12
|
publish:
|
|
11
|
-
# Solo ejecutar si es un push a main/master
|
|
12
|
-
if: github.event_name == 'push'
|
|
13
13
|
runs-on: ubuntu-latest
|
|
14
14
|
|
|
15
15
|
steps:
|
|
@@ -44,6 +44,16 @@ jobs:
|
|
|
44
44
|
env:
|
|
45
45
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
46
46
|
|
|
47
|
+
- name: Configure Git
|
|
48
|
+
run: |
|
|
49
|
+
git config --global user.name "github-actions[bot]"
|
|
50
|
+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
|
51
|
+
|
|
52
|
+
- name: Create release version
|
|
53
|
+
run: npm run release
|
|
54
|
+
env:
|
|
55
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
56
|
+
|
|
47
57
|
- name: Build package
|
|
48
58
|
run: npm run prepublish
|
|
49
59
|
env:
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.4.21-dev.30](https://github.com/Vixonic/store-news-internal/compare/v0.4.21-dev.29...v0.4.21-dev.30) (2026-04-21)
|
|
6
|
+
|
|
7
|
+
### [0.4.21-dev.29](https://github.com/Vixonic/store-news-internal/compare/v0.4.21-dev.28...v0.4.21-dev.29) (2026-04-21)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* defaultText-update default messages for news display ([8e37ff4](https://github.com/Vixonic/store-news-internal/commit/8e37ff4c86f640c9efffca274f6b1371999dd303))
|
|
13
|
+
* update npm publish workflow to trigger on pull requests ([fa55bb0](https://github.com/Vixonic/store-news-internal/commit/fa55bb035cc73215991ee61f485d93e10926999f))
|
|
14
|
+
|
|
5
15
|
### [0.4.21-dev.28](https://github.com/Vixonic/store-news-internal/compare/v0.4.21-dev.27...v0.4.21-dev.28) (2026-01-26)
|
|
6
16
|
|
|
7
17
|
### [0.4.21-dev.27](https://github.com/Vixonic/store-news-internal/compare/v0.4.21-dev.26...v0.4.21-dev.27) (2026-01-26)
|
package/build.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"author": {
|
|
9
9
|
"name": ""
|
|
10
10
|
},
|
|
11
|
-
"version": "0.4.21-dev.
|
|
11
|
+
"version": "0.4.21-dev.30",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"prepublish": "vixonic-module-packager --mode=build",
|
|
14
14
|
"watch": "vixonic-module-packager --mode=watch",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@types/react-transition-group": "^4.4.12",
|
|
37
37
|
"@types/uuid": "^9.0.1",
|
|
38
38
|
"@vixoniccom/module-packager": "^2.13.0-dev.1",
|
|
39
|
-
"@vixoniccom/modules": "^2.
|
|
39
|
+
"@vixoniccom/modules": "^2.25.0-dev.11",
|
|
40
40
|
"standard-version": "^9.5.0"
|
|
41
41
|
}
|
|
42
42
|
}
|