Skip to content
This repository has been archived by the owner on Feb 15, 2025. It is now read-only.

Commit

Permalink
chore: update project
Browse files Browse the repository at this point in the history
  • Loading branch information
deleonio committed May 31, 2024
1 parent 8ad5583 commit b9228bb
Show file tree
Hide file tree
Showing 8 changed files with 7,207 additions and 6,134 deletions.
4 changes: 4 additions & 0 deletions .ncurc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"dep": ["prod", "dev", "optional", "peer"],
"peer": true
}
5 changes: 2 additions & 3 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# - npm
legacy-peer-deps=true
engine-strict=true
save-exact=true

# - pnpm
auto-install-peers=true
shamefully-hoist=true
strict-peer-dependencies=false
41 changes: 41 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"editor.formatOnSave": true,
"editor.renderWhitespace": "all",
// Configure glob patterns for excluding files and folders.
// For example, the files explorer decides which files and folders to show
// or hide based on this setting.
// Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
// Configure glob patterns of file paths to exclude from file watching.
// Patterns must match on absolute paths
// (i.e. prefix with ** or the full path to match properly).
// Changing this setting requires a restart.
// When you experience Code consuming lots of cpu time on startup,
// you can exclude large folders to reduce the initial load.
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/tmp/**": true,
"**/bower_components/**": true,
"**/dist/**": true
},
// Configure glob patterns for excluding files and folders in searches.
// Inherits all glob patterns from the `files.exclude` setting.
// Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
},
"javascript.preferences.importModuleSpecifier": "relative",
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.updateImportsOnFileMove.enabled": "always",
"html.customData": ["./node_modules/@public-ui/components/vscode-custom-data.json"]
}
287 changes: 0 additions & 287 deletions LICENSE

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Das Default-Theme ist ein _Token-Based_ Theme, das mit minimalen Anpassungen sof
| Variable | Standard-Wert | Bedeutung |
| --------------------------------- | ---------------------------------------------------------------- | -------------------------------------------------- |
| `--kolibri-border-radius` | `5px` | Border-Radius für abgerundete Elemente |
| `--kolibri-font-family` | `BundesSans Web, Calibri, Verdana, Arial, Helvetica, sans-serif` | Allgemeine Schriftart |
| `--kolibri-font-family` | `Calibri, Verdana, Arial, Helvetica, sans-serif` | Allgemeine Schriftart |
| `--kolibri-font-size` | `16px` | Allgemeine Schriftgröße |
| `--kolibri-spacing` | `0.25rem` | Allgemeiner Abstand zwischen Elementen |
| `--kolibri-border-width` | `1px` | Allgemeine Rahmen-Breite |
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,26 +22,26 @@
"update": "pnpm ncu:patch && pnpm ncu:minor && pnpm ncu:major"
},
"devDependencies": {
"@public-ui/components": "2.1.0",
"@public-ui/visual-tests": "2.1.0",
"@rollup/plugin-commonjs": "25.0.7",
"@public-ui/components": "2.1.1",
"@public-ui/visual-tests": "2.1.1",
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"@types/node": "ts5.4",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"eslint": "8.57.0",
"nodemon": "3.1.0",
"nodemon": "3.1.2",
"npm-check-updates": "16.14.20",
"postcss": "8.4.38",
"prettier": "3.2.5",
"rollup": "4.17.2",
"rollup": "4.18.0",
"rollup-plugin-postcss": "4.0.2",
"sass": "1.76.0",
"sass": "1.77.3",
"typescript": "5.4.5"
},
"peerDependencies": {
"@public-ui/components": "2.1.0"
"@public-ui/components": "2.1.1"
},
"exports": {
".": {
Expand All @@ -60,6 +60,6 @@
"engines": {
"node": "^20",
"npm": "^10",
"pnpm": "^8"
"pnpm": "^9"
}
}
Loading

0 comments on commit b9228bb

Please sign in to comment.