-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/master' into elements-#1075-ino-nav-menu
# Conflicts: # packages/elements/src/components/ino-snackbar/readme.md
- Loading branch information
Showing
117 changed files
with
3,957 additions
and
5,218 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 |
---|---|---|
|
@@ -39,13 +39,15 @@ jobs: | |
- name: Check format | ||
run: yarn format | ||
- name: Check lint | ||
run: yarn lint | ||
run: yarn lint:ci | ||
env: | ||
NX_REJECT_UNKNOWN_LOCAL_CACHE: 0 | ||
- name: Build all projects | ||
run: yarn build | ||
env: | ||
NX_REJECT_UNKNOWN_LOCAL_CACHE: 0 | ||
- name: Check if there are changes | ||
uses: NathanielHill/[email protected] | ||
- name: Test all projects | ||
id: test_projects | ||
run: yarn test | ||
|
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
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,8 +1,8 @@ | ||
{ | ||
"name": "elements-angular-example", | ||
"version": "9.2.0", | ||
"version": "9.3.0", | ||
"private": true, | ||
"dependencies": { | ||
"@inovex.de/elements-angular": "^9.2.0" | ||
"@inovex.de/elements-angular": "^9.3.0" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -76,7 +76,8 @@ | |
"packages/elements-angular-example/**/*.html" | ||
] | ||
} | ||
} | ||
}, | ||
"clean": {} | ||
}, | ||
"tags": [] | ||
} |
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,6 +1,6 @@ | ||
{ | ||
"name": "@inovex.de/elements-angular", | ||
"version": "9.2.0", | ||
"version": "9.3.0", | ||
"author": "Sven Lindauer <[email protected]>", | ||
"description": "Angular library for @inovex.de/elements to use the components in Angular projects", | ||
"contributors": [ | ||
|
@@ -20,7 +20,7 @@ | |
"rxjs": ">=7.5.0" | ||
}, | ||
"dependencies": { | ||
"@inovex.de/elements": "^9.2.0", | ||
"@inovex.de/elements": "^9.3.0", | ||
"tslib": "^2.3.0" | ||
}, | ||
"schematics": "./dist/schematics/collection.json", | ||
|
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 |
---|---|---|
|
@@ -70,7 +70,8 @@ | |
"packages/elements-angular/src/**/*.html" | ||
] | ||
} | ||
} | ||
}, | ||
"clean": {} | ||
}, | ||
"tags": [] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"extends": ["../../.eslintrc.json"], | ||
"ignorePatterns": ["!**/*", "node_modules/*", "dist/*", "vite.config.ts"], | ||
"overrides": [ | ||
{ | ||
"files": ["*.ts", "*.tsx"], | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:react-hooks/recommended" | ||
], | ||
"plugins": ["react-refresh"] | ||
} | ||
] | ||
} |
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
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
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,29 +1,10 @@ | ||
import { defineConfig } from 'vite'; | ||
import react from '@vitejs/plugin-react'; | ||
|
||
const baseConfig = { | ||
export default defineConfig({ | ||
base: '/example-projects/react/', | ||
plugins: [react()], | ||
build: { | ||
commonjsOptions: { | ||
include: [/@inovex.de\/elements-react\//, /node_modules\//], | ||
}, | ||
optimizeDeps: { | ||
include: ['@inovex.de/elements-react'], | ||
}, | ||
}; | ||
// https://vitejs.dev/config/ | ||
export default defineConfig(({ command }) => { | ||
if (command === 'serve') | ||
return { | ||
...baseConfig, | ||
server: { | ||
open: '/', | ||
}, | ||
}; | ||
|
||
return { | ||
...baseConfig, | ||
base: '/example-projects/react/', | ||
optimizeDeps: { | ||
include: ['@inovex.de/elements-react'], | ||
}, | ||
}; | ||
}); |
Oops, something went wrong.