@socialgouv/fiches-vdd-types 2.1587.1 → 2.1588.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.
- package/.github/workflows/fetch.yml +7 -0
- package/.releaserc.yml +0 -6
- package/CHANGELOG.md +14 -0
- package/package.json +1 -1
|
@@ -88,6 +88,13 @@ jobs:
|
|
|
88
88
|
- name: Publish to NPM
|
|
89
89
|
run: npm publish
|
|
90
90
|
|
|
91
|
+
- name: Publish types to NPM
|
|
92
|
+
run: |
|
|
93
|
+
rm -rf data
|
|
94
|
+
sed -i "s/@socialgouv\/fiches-vdd/@socialgouv\/fiches-vdd-types/g" package.json
|
|
95
|
+
{ rm package.json; jq 'del(.dependencies)' > package.json; } < package.json
|
|
96
|
+
npm publish
|
|
97
|
+
|
|
91
98
|
- uses: mattermost/action-mattermost-notify@master
|
|
92
99
|
if: failure()
|
|
93
100
|
with:
|
package/.releaserc.yml
CHANGED
|
@@ -9,10 +9,4 @@ plugins:
|
|
|
9
9
|
- CHANGELOG.md
|
|
10
10
|
- package.json
|
|
11
11
|
message: "chore(release): version ${nextRelease.version}\n\n${nextRelease.notes}"
|
|
12
|
-
- - "@semantic-release/exec"
|
|
13
|
-
- publishCmd: |
|
|
14
|
-
rm -rf data
|
|
15
|
-
sed -i "s/@socialgouv\/fiches-vdd/@socialgouv\/fiches-vdd-types/g" package.json
|
|
16
|
-
{ rm package.json; jq 'del(.dependencies)' > package.json; } < package.json
|
|
17
|
-
npm publish
|
|
18
12
|
- "@semantic-release/github"
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [2.1588.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1587.2...v2.1588.0) (2025-12-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **data:** 20251211_1833 update ([ba1fe29](https://github.com/SocialGouv/fiches-vdd/commit/ba1fe29bea1dc673577a35465187232026e97a20))
|
|
7
|
+
|
|
8
|
+
## [2.1587.2](https://github.com/SocialGouv/fiches-vdd/compare/v2.1587.1...v2.1587.2) (2025-12-11)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* release workflow ([4face77](https://github.com/SocialGouv/fiches-vdd/commit/4face778462702296dbff882f4a2aa46ead27ed4))
|
|
14
|
+
|
|
1
15
|
## [2.1587.1](https://github.com/SocialGouv/fiches-vdd/compare/v2.1587.0...v2.1587.1) (2025-12-11)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED