@smartive/datocms-utils 2.1.1 → 2.1.2
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 +3 -3
- package/.github/workflows/test.yml +4 -3
- package/.nvmrc +1 -1
- package/CHANGELOG.md +2 -2
- package/package.json +12 -10
|
@@ -11,10 +11,10 @@ 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
|
|
@@ -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.2](https://github.com/smartive/datocms-utils/compare/v2.1.1...v2.1.2) (2025-11-13)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* actions failing due to eslint upgrade ([7400017](https://github.com/smartive/datocms-utils/commit/74000172ebaadc2297ef4f7eb50d26b8ae68c5ab))
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartive/datocms-utils",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
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,18 @@
|
|
|
19
20
|
"author": "smartive AG",
|
|
20
21
|
"license": "MIT",
|
|
21
22
|
"devDependencies": {
|
|
22
|
-
"@semantic-release/changelog": "6.0.3",
|
|
23
|
-
"@semantic-release/commit-analyzer": "13.0.1",
|
|
23
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
24
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
24
25
|
"@semantic-release/gitlab": "^13.2.1",
|
|
25
|
-
"@semantic-release/npm": "
|
|
26
|
-
"@semantic-release/release-notes-generator": "14.0
|
|
27
|
-
"@smartive/eslint-config": "^
|
|
26
|
+
"@semantic-release/npm": "^13.1.1",
|
|
27
|
+
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
28
|
+
"@smartive/eslint-config": "^7.0.0",
|
|
28
29
|
"@smartive/prettier-config": "^3.1.2",
|
|
29
|
-
"@types/node": "^
|
|
30
|
-
"eslint": "^9.
|
|
30
|
+
"@types/node": "^24.0.0",
|
|
31
|
+
"eslint": "^9.39.1",
|
|
32
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
31
33
|
"prettier": "^3.3.3",
|
|
32
|
-
"semantic-release": "^
|
|
34
|
+
"semantic-release": "^25.0.0",
|
|
33
35
|
"typescript": "^5.6.2"
|
|
34
36
|
},
|
|
35
37
|
"dependencies": {
|