@smartive/datocms-utils 2.1.1 → 2.1.3
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/release.yml +8 -4
- package/.github/workflows/test.yml +4 -3
- package/.nvmrc +1 -1
- package/CHANGELOG.md +2 -2
- package/package.json +8 -11
- package/renovate.json +6 -1
|
@@ -11,14 +11,18 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
|
|
13
13
|
steps:
|
|
14
|
-
- uses: actions/checkout@
|
|
15
|
-
- uses: actions/setup-node@
|
|
14
|
+
- uses: actions/checkout@v5
|
|
15
|
+
- uses: actions/setup-node@v6
|
|
16
16
|
with:
|
|
17
|
-
node-version:
|
|
17
|
+
node-version: 24
|
|
18
18
|
- run: npm ci
|
|
19
19
|
- run: npm run build
|
|
20
20
|
- name: semantic release
|
|
21
|
-
uses: cycjimmy/semantic-release-action@
|
|
21
|
+
uses: cycjimmy/semantic-release-action@v4
|
|
22
|
+
with:
|
|
23
|
+
semantic_version: 19
|
|
24
|
+
extra_plugins: |
|
|
25
|
+
@semantic-release/changelog@6
|
|
22
26
|
env:
|
|
23
27
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
24
28
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
@@ -15,10 +15,11 @@ jobs:
|
|
|
15
15
|
runs-on: ubuntu-latest
|
|
16
16
|
|
|
17
17
|
steps:
|
|
18
|
-
- uses: actions/checkout@
|
|
19
|
-
- uses: actions/setup-node@
|
|
18
|
+
- uses: actions/checkout@v5
|
|
19
|
+
- uses: actions/setup-node@v6
|
|
20
20
|
with:
|
|
21
|
-
node-version:
|
|
21
|
+
node-version: 24
|
|
22
22
|
- run: npm ci
|
|
23
|
+
- run: npm run prettier
|
|
23
24
|
- run: npm run lint
|
|
24
25
|
- run: npm run build
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
24
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [2.1.
|
|
1
|
+
## [2.1.3](https://github.com/smartive/datocms-utils/compare/v2.1.2...v2.1.3) (2025-11-13)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* semantic release not working anymore ([a9fc543](https://github.com/smartive/datocms-utils/commit/a9fc543a9c75493a21f9016b0c0fa4327634dc1c))
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartive/datocms-utils",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.3",
|
|
4
4
|
"description": "A set of utilities and helpers to work with DatoCMS in a Next.js project.",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "tsc",
|
|
10
|
-
"lint": "
|
|
10
|
+
"lint": "eslint src",
|
|
11
|
+
"prettier": "prettier --check src",
|
|
11
12
|
"publish": "semantic-release"
|
|
12
13
|
},
|
|
13
14
|
"publishConfig": {
|
|
@@ -19,17 +20,13 @@
|
|
|
19
20
|
"author": "smartive AG",
|
|
20
21
|
"license": "MIT",
|
|
21
22
|
"devDependencies": {
|
|
22
|
-
"@
|
|
23
|
-
"@semantic-release/commit-analyzer": "13.0.1",
|
|
24
|
-
"@semantic-release/gitlab": "^13.2.1",
|
|
25
|
-
"@semantic-release/npm": "12.0.1",
|
|
26
|
-
"@semantic-release/release-notes-generator": "14.0.3",
|
|
27
|
-
"@smartive/eslint-config": "^6.4.0",
|
|
23
|
+
"@smartive/eslint-config": "^7.0.0",
|
|
28
24
|
"@smartive/prettier-config": "^3.1.2",
|
|
29
|
-
"@types/node": "^
|
|
30
|
-
"eslint": "^9.
|
|
25
|
+
"@types/node": "^24.0.0",
|
|
26
|
+
"eslint": "^9.39.1",
|
|
27
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
31
28
|
"prettier": "^3.3.3",
|
|
32
|
-
"semantic-release": "^
|
|
29
|
+
"semantic-release": "^25.0.0",
|
|
33
30
|
"typescript": "^5.6.2"
|
|
34
31
|
},
|
|
35
32
|
"dependencies": {
|
package/renovate.json
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
3
|
-
"extends": [
|
|
3
|
+
"extends": [
|
|
4
|
+
"local>smartive/renovate-config",
|
|
5
|
+
":automergeRequireAllStatusChecks",
|
|
6
|
+
":automergeDisabled",
|
|
7
|
+
":automergeStableNonMajor"
|
|
8
|
+
]
|
|
4
9
|
}
|