@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.
@@ -11,10 +11,10 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
 
13
13
  steps:
14
- - uses: actions/checkout@v4
15
- - uses: actions/setup-node@v4
14
+ - uses: actions/checkout@v5
15
+ - uses: actions/setup-node@v6
16
16
  with:
17
- node-version: 22
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@v4
19
- - uses: actions/setup-node@v4
18
+ - uses: actions/checkout@v5
19
+ - uses: actions/setup-node@v6
20
20
  with:
21
- node-version: 22
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
- 22
1
+ 24
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
- ## [2.1.1](https://github.com/smartive/datocms-utils/compare/v2.1.0...v2.1.1) (2025-04-26)
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
- * **deps:** update dependency graphql to v16.11.0 ([#94](https://github.com/smartive/datocms-utils/issues/94)) ([58fd093](https://github.com/smartive/datocms-utils/commit/58fd09368900d4ccb8b0250a5364d2e85ab71c87))
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.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": "prettier --check src && eslint src",
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": "12.0.1",
26
- "@semantic-release/release-notes-generator": "14.0.3",
27
- "@smartive/eslint-config": "^6.4.0",
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": "^22.7.0",
30
- "eslint": "^9.16.0",
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": "^24.1.1",
34
+ "semantic-release": "^25.0.0",
33
35
  "typescript": "^5.6.2"
34
36
  },
35
37
  "dependencies": {