Skip to content

Commit

Permalink
updating
Browse files Browse the repository at this point in the history
dependencies
and
adding
to
releaseosaurus
  • Loading branch information
initplatform committed Sep 19, 2020
1 parent 1efab74 commit 6f84826
Show file tree
Hide file tree
Showing 10 changed files with 6,256 additions and 6,165 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

.env

# compiled output
/dist
/tmp
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2020-09-18

- `[Added]` Upgraded all dependencies.
- `[Added]` New release process.

## [1.0.0] - 2020-03-13

- Initial Release!
Expand Down
261 changes: 142 additions & 119 deletions angular.json
Original file line number Diff line number Diff line change
@@ -1,125 +1,148 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"sb-clean-blog-angular": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"sb-clean-blog-angular": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "sb",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/sb-clean-blog-angular",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": false,
"assets": [
"src/favicon.png",
"src/assets"
],
"styles": [
"src/styles/styles.scss"
],
"stylePreprocessorOptions": {
"includePaths": [
"src",
"./node_modules"
]
},
"root": "",
"sourceRoot": "src",
"prefix": "sb",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/sb-clean-blog-angular",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": false,
"assets": ["src/favicon.png", "src/assets"],
"styles": ["src/styles/styles.scss"],
"stylePreprocessorOptions": {
"includePaths": ["src", "./node_modules"]
},
"scripts": []
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "sb-clean-blog-angular:build"
},
"configurations": {
"production": {
"browserTarget": "sb-clean-blog-angular:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "sb-clean-blog-angular:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"assets": ["src/favicon.png", "src/assets"],
"styles": ["src/styles/styles.scss"],
"stylePreprocessorOptions": {
"includePaths": ["src", "./node_modules"]
},
"scripts": [],
"codeCoverageExclude": ["src/testing/**/*"]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"tsconfig.app.json",
"tsconfig.spec.json",
"e2e/tsconfig.json"
],
"exclude": ["**/node_modules/**"]
}
"scripts": []
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "sb-clean-blog-angular:serve"
},
"configurations": {
"production": {
"devServerTarget": "sb-clean-blog-angular:serve:production"
}
}
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "sb-clean-blog-angular:build"
},
"configurations": {
"production": {
"browserTarget": "sb-clean-blog-angular:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "sb-clean-blog-angular:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"assets": [
"src/favicon.png",
"src/assets"
],
"styles": [
"src/styles/styles.scss"
],
"stylePreprocessorOptions": {
"includePaths": [
"src",
"./node_modules"
]
},
"scripts": [],
"codeCoverageExclude": [
"src/testing/**/*"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"tsconfig.app.json",
"tsconfig.spec.json",
"e2e/tsconfig.json"
],
"exclude": [
"**/node_modules/**"
]
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "sb-clean-blog-angular:serve"
},
"configurations": {
"production": {
"devServerTarget": "sb-clean-blog-angular:serve:production"
}
}
}
},
"defaultProject": "sb-clean-blog-angular"
}
}
}
},
"defaultProject": "sb-clean-blog-angular",
"cli": {
"analytics": "1b38752a-78cd-445f-b84a-c73a1648eb69"
}
}
Loading

0 comments on commit 6f84826

Please sign in to comment.