Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workspace setup #4533

Merged
merged 27 commits into from
Aug 28, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
77abe5a
Add basic workspace setup
sdvg Aug 4, 2023
7240b32
Merge branch 'main' into workspaces
deleonio Aug 15, 2023
fc61a0e
Merge branch 'main' of https://github.com/public-ui/kolibri into work…
deleonio Aug 16, 2023
2151c67
Merge branch 'main' into workspaces
laske185 Aug 22, 2023
a2d2d4e
format: core index
laske185 Aug 22, 2023
d77ab4b
Merge branch 'main' into workspaces
laske185 Aug 22, 2023
ee110ac
chore: run format with pnpm recursive
laske185 Aug 22, 2023
1fc3484
chore: format script in react samples
laske185 Aug 22, 2023
f2974c8
format: fix format at samples react
laske185 Aug 22, 2023
c8e2913
chore: remove svelte adapter
laske185 Aug 22, 2023
1e3f41d
chore: update import version of kolibri in vaadin adapter
laske185 Aug 22, 2023
2e8a21b
build: fix linting in core
laske185 Aug 22, 2023
f04b31f
build: remove @public-ui/components from types in tsconfig
laske185 Aug 22, 2023
c651976
chore: update icofint readme
laske185 Aug 22, 2023
9d0b30f
chore: fixed some iddues in the designer
laske185 Aug 22, 2023
f7f2396
Merge branch 'main' into workspaces
laske185 Aug 22, 2023
d47b4ae
build: fix tsconfig
laske185 Aug 22, 2023
48a257c
build: CI uses pnpm
laske185 Aug 22, 2023
64d92b0
Update ci.yml
laske185 Aug 22, 2023
12da8cf
chore: removed some findings in designer
laske185 Aug 23, 2023
ba0f6dd
chore: update pnpm-lock.yaml
laske185 Aug 23, 2023
234a2b8
build: remove lint script at designer
laske185 Aug 23, 2023
7f4eb9b
build: moved build step behind format
laske185 Aug 23, 2023
02f9709
build: upgrade node and pnpm
laske185 Aug 23, 2023
ae662d6
chore: add "@public-ui/components" to types in react sample
laske185 Aug 23, 2023
a36a089
Merge branch 'develop' of https://github.com/public-ui/kolibri into w…
deleonio Aug 28, 2023
d8616ec
chore: remove svelte stuff
deleonio Aug 28, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"packages/themes/itzbund",
"packages/themes/mfm"
],
"useNx": false,
"useNx": true,
"version": "1.6.0-rc.23"
}
15 changes: 15 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "test"]
}
}
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"]
}
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"ncu:minor": "ncu -t minor -u -x rimraf && lerna exec --stream -- ncu -t minor -u -x rimraf,rxjs,typescript,zone.js",
"ncu:patch": "ncu -t patch -u -x rimraf && lerna exec --stream -- ncu -t patch -u -x rimraf",
"pack": "npx lerna exec --stream -- npm pack",
"postinstall": "lerna exec --stream -- pnpm i --no-frozen-lockfile",
"postinstall": "#lerna exec --stream -- pnpm i --no-frozen-lockfile",
"prepare:husky": "rimraf .husky && husky install && npm-run-all prepare:husky:*",
"prepare:husky:commitlint": "husky add .husky/commit-msg \"npx commitlint --edit $1\"",
"prepare:husky:depcheck": "husky add .husky/pre-commit \"pnpm depcheck\"",
Expand Down
1 change: 1 addition & 0 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
"lint": "eslint src && tsc --noemit",
"ts-prune": "npx ts-prune src -e",
"start": "cross-env NODE_ENV=development stencil build --dev --serve --watch --no-open",
"dev": "cross-env NODE_ENV=development stencil build --prod --watch",
"test": "cross-env NODE_ENV=test stencil test --spec --json --outputFile jest-test-results.json",
"test:watch": "cross-env NODE_ENV=test stencil test --spec --watchAll",
"postpack": "mv package.bak.json package.json",
Expand Down
Loading