forked from gardener/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split into smaller and more independent modules (gardener#815)
* extract kubernetes-client package * small improvements * Initial commit * updated pnp * Migrate docker build to Yarn 2 workspaces * VSCode Editor SDK * Optimize frontend build for pnp * Update deps * Minimal Dockerfile * added yarn check-cache to validation * Use the plugin-production-install * Update LICENSE to new layout - typeface is now fontsoure * Allow loading fonts from 'data:' urls * use mdi icon * use vuetify-loader only in production * optimize split chunks * do not dynamically import vuetify * PR review feedback I
- Loading branch information
1 parent
c938452
commit d3f0652
Showing
2,035 changed files
with
54,839 additions
and
19,479 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,31 @@ | ||
.DS_Store | ||
# editor directories and files | ||
.idea | ||
.vscode | ||
.yarn | ||
coverage | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? | ||
|
||
# Ignore kubeconfig | ||
kubeconfig* | ||
# yarn zero-installs | ||
.yarn/* | ||
!.yarn/cache | ||
!.yarn/releases | ||
!.yarn/plugins | ||
!.yarn/sdks | ||
!.yarn/versions | ||
|
||
# Ignore node_modules. | ||
/node_modules | ||
# local files with sensitive data | ||
.env.local | ||
.env.*.local | ||
|
||
# Ignore all tempfiles. | ||
/tmp | ||
npm-debug.log | ||
# log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Ignore all files starting with "my" | ||
# other files to ignore | ||
node_modules/ | ||
tmp/ | ||
coverage/ | ||
my* | ||
buildinfo.json | ||
kubeconfig* |
Oops, something went wrong.