Skip to content

Commit

Permalink
Merge pull request #2 from ngxpert/feature/ng-update-18
Browse files Browse the repository at this point in the history
Feature/ng update 18
  • Loading branch information
shhdharmen authored Aug 26, 2024
2 parents 9e5a67d + 6ea23e3 commit 3dac21e
Show file tree
Hide file tree
Showing 39 changed files with 21,226 additions and 14,122 deletions.
1 change: 0 additions & 1 deletion .github/workflows/pre-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
HUSKY_SKIP_HOOKS: true
run: |
npm run lint
npm run build:lib
npm run build -- --base-href "/coolshapes/"
# npm run test
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.

# Compiled output
/dist
Expand Down
50 changes: 34 additions & 16 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,29 @@
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
"style": "scss",
"skipTests": true
},
"@schematics/angular:class": {
"skipTests": true
},
"@schematics/angular:directive": {
"skipTests": true
},
"@schematics/angular:guard": {
"skipTests": true
},
"@schematics/angular:interceptor": {
"skipTests": true
},
"@schematics/angular:pipe": {
"skipTests": true
},
"@schematics/angular:resolver": {
"skipTests": true
},
"@schematics/angular:service": {
"skipTests": true
}
},
"root": "",
Expand Down Expand Up @@ -41,8 +63,10 @@
"input": "ng-doc/coolshapes/assets",
"output": "assets/ng-doc"
},
"src/favicon.ico",
"src/assets"
{
"glob": "**/*",
"input": "public"
}
],
"styles": [
"node_modules/@ng-doc/app/styles/global.css",
Expand All @@ -57,15 +81,10 @@
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
"maximumWarning": "2kB",
"maximumError": "4kB"
}
],
"outputHashing": "all"
Expand All @@ -91,10 +110,7 @@
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "coolshapes:build"
}
"builder": "@angular-devkit/build-angular:extract-i18n"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
Expand All @@ -106,8 +122,10 @@
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
"src/assets"
{
"glob": "**/*",
"input": "public"
}
],
"styles": [
"src/styles.scss"
Expand Down
Loading

0 comments on commit 3dac21e

Please sign in to comment.