Skip to content

Commit b8ed818

Browse files
committed
Merge branch 'main' into feature/starter-plan-generate
2 parents 7fad13b + 1affc9e commit b8ed818

File tree

107 files changed

+10708
-2336
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+10708
-2336
lines changed

.github/actions/setup-node/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ runs:
1818

1919
- name: Install dependencies
2020
shell: bash
21-
run: pnpm install
21+
run: pnpm install --frozen-lockfile

.github/workflows/ci.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: CI
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
paths-ignore:
7-
- '**/*.md'
8-
- 'docs/**'
7+
- "**/*.md"
8+
- "docs/**"
99
pull_request:
10-
branches: [ main ]
10+
branches: [main]
1111
paths-ignore:
12-
- '**/*.md'
13-
- 'docs/**'
12+
- "**/*.md"
13+
- "docs/**"
1414

1515
env:
1616
HUSKY: 0
@@ -24,9 +24,9 @@ jobs:
2424
- uses: actions/checkout@v4
2525

2626
- uses: ./.github/actions/setup-node
27-
27+
2828
- name: Check
29-
run: pnpm nx run-many --target=build,lint,test --parallel=3 -p="tag:npm:public"
29+
run: pnpm nx run-many --target=build,lint,test,test:types --parallel=3 -p="tag:npm:public"
3030
env:
3131
VITE_ACCESS_TOKEN: ${{ secrets.VITE_ACCESS_TOKEN }}
3232
VITE_SPACE_ID: ${{ vars.VITE_SPACE_ID }}

.nxignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ commitlint.config.js
99
LICENSE
1010
CONTRIBUTING.md
1111
README.md
12-
RELEASING.md
12+
RELEASING.md

nx.json

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,6 @@
2525
},
2626
"release": {
2727
"projectsRelationship": "independent",
28-
"groups": {
29-
"core-js": {
30-
"projects": [
31-
"storyblok-js-client",
32-
"js",
33-
"richtext",
34-
"storyblok",
35-
"eslint-config"
36-
],
37-
"projectsRelationship": "independent"
38-
},
39-
"sdk": {
40-
"projects": ["react", "vue", "astro", "svelte", "nuxt"],
41-
"projectsRelationship": "independent"
42-
}
43-
},
4428
"version": {
4529
"conventionalCommits": true,
4630
"fallbackCurrentVersionResolver": "disk",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
"devDependencies": {
2020
"@commitlint/cli": "^19.8.1",
2121
"@commitlint/config-conventional": "^19.8.1",
22-
"@nx/js": "^21.0.3",
22+
"@nx/js": "21.3.11",
2323
"husky": "^9.1.7",
2424
"lint-staged": "^15.5.2",
25-
"nx": "21.0.3",
25+
"nx": "21.3.11",
2626
"typescript": "5.8.3"
2727
},
2828
"resolutions": {

0 commit comments

Comments
 (0)