Skip to content

Commit 5ea44a6

Browse files
authored
XWIKI-23699: Move packages related to blocknote from Cristal (#4764)
1 parent 7c38362 commit 5ea44a6

File tree

374 files changed

+26040
-1036
lines changed

Some content is hidden

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

374 files changed

+26040
-1036
lines changed

.github/renovate.json5

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,6 @@
6868
"matchDatasources": ["maven"],
6969
"matchPackageNames": ["!org.webjars*"],
7070
"assignees": ["tmortagne"]
71-
},
72-
73-
// Group all cristal releases in the same PR.
74-
{
75-
"matchDatasources": ["npm"],
76-
"groupName": "cristal",
77-
"matchDepPatterns": "@xwiki/cristal-.+"
7871
}
7972
]
8073
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,4 @@ xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-templates/src/main/res
7575

7676
## Node specific
7777
node_modules/
78+
.nx/

nx.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"$schema": "./node_modules/nx/schemas/nx-schema.json",
3+
"targetDefaults": {
4+
"build": {
5+
"cache": true,
6+
"dependsOn": [
7+
"^build",
8+
"typecheck"
9+
],
10+
"outputs": [
11+
"{projectRoot}/dist"
12+
]
13+
},
14+
"typecheck": {
15+
"cache": true,
16+
"dependsOn": [
17+
"^build"
18+
]
19+
}
20+
}
21+
}

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
22
"private": true,
3-
"name": "@xwiki/platform"
3+
"name": "@xwiki/platform",
4+
"devDependencies": {
5+
"nx": "catalog:"
6+
}
47
}

0 commit comments

Comments
 (0)