Skip to content

Commit

Permalink
feat: add bootstraping script
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianiy committed Sep 28, 2021
1 parent ab4d1d3 commit 3fd7b32
Show file tree
Hide file tree
Showing 80 changed files with 6,058 additions and 6,940 deletions.
8 changes: 4 additions & 4 deletions .huskyrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
13 changes: 0 additions & 13 deletions .prettierrc.json

This file was deleted.

4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This repo is setup to automatically release canary builds for every commit that

For stable releases, the build and publishing is done automatically for CircleCI. If you have write access to the repo, run the following steps to automatically release a new version to `latest`

- Pull down the latest version of master to your local machine
- Run `yarn release:stable`
- Pull down the latest version of master to your local machine
- Run `yarn release:stable`

The release commit will be automatically pushed to `master` where CircleCI will complete the remaining publishing steps.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Project forked from unmantained [angular-redux/platform](https://github.com/angu

## Packages

- [ngredux-store](packages/store) - Bindings between Redux and Angular
- [ngredux-form](packages/form) - Bindings between Angular Forms and your Redux state
- [ngredux-router](packages/router) - Bindings between Angular Router and your Redux state

- [ngredux-store](packages/store) - Bindings between Redux and Angular
- [ngredux-form](packages/form) - Bindings between Angular Forms and your Redux state
- [ngredux-router](packages/router) - Bindings between Angular Router and your Redux state
193 changes: 89 additions & 104 deletions angular.json
Original file line number Diff line number Diff line change
@@ -1,104 +1,89 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ngredux-store": {
"projectType": "library",
"root": "packages/store",
"sourceRoot": "packages/store/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "./tsconfig.lib.json",
"project": "packages/store/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "./tsconfig.lib.prod.json"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"./tsconfig.lib.json",
"./tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
},
"ngredux-router": {
"projectType": "library",
"root": "packages/router",
"sourceRoot": "packages/router/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "./tsconfig.lib.json",
"project": "packages/router/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "./tsconfig.lib.prod.json"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"./tsconfig.lib.json",
"./tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
},
"ngredux-form": {
"projectType": "library",
"root": "packages/form",
"sourceRoot": "packages/form/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "./tsconfig.lib.json",
"project": "packages/form/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "./tsconfig.lib.prod.json"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"./tsconfig.lib.json",
"./tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}
},
"defaultProject": "store"
}
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ngredux-store": {
"projectType": "library",
"root": "packages/store",
"sourceRoot": "packages/store/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "./tsconfig.lib.json",
"project": "packages/store/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "./tsconfig.lib.prod.json"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": ["./tsconfig.lib.json", "./tsconfig.spec.json"],
"exclude": ["**/node_modules/**"]
}
}
}
},
"ngredux-router": {
"projectType": "library",
"root": "packages/router",
"sourceRoot": "packages/router/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "./tsconfig.lib.json",
"project": "packages/router/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "./tsconfig.lib.prod.json"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": ["./tsconfig.lib.json", "./tsconfig.spec.json"],
"exclude": ["**/node_modules/**"]
}
}
}
},
"ngredux-form": {
"projectType": "library",
"root": "packages/form",
"sourceRoot": "packages/form/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "./tsconfig.lib.json",
"project": "packages/form/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "./tsconfig.lib.prod.json"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": ["./tsconfig.lib.json", "./tsconfig.spec.json"],
"exclude": ["**/node_modules/**"]
}
}
}
}
},
"defaultProject": "store"
}
2 changes: 1 addition & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
extends: ['@commitlint/config-conventional'],
};
8 changes: 4 additions & 4 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

# Packages

- [ngredux-store](store/) - Bindings between Redux and Angular
- [ngredux-form](form/) - Bindings between Angular Forms and your Redux state
- [ngredux-router](router/) - Bindings between Angular Router and your Redux state
- [ngredux-store](store/) - Bindings between Redux and Angular
- [ngredux-form](form/) - Bindings between Angular Forms and your Redux state
- [ngredux-router](router/) - Bindings between Angular Router and your Redux state

# Examples

- [Example Application](https://github.com/angular-redux/platform/blob/master/packages/example-app)
- [Example Application](https://github.com/angular-redux/platform/blob/master/packages/example-app)
10 changes: 5 additions & 5 deletions docs/_navbar.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- [Store](store/)
- [Form](form/)
- [Router](router/)
- [Changelog](changelog)
- [Contributing](contributing)
- [Store](store/)
- [Form](form/)
- [Router](router/)
- [Changelog](changelog)
- [Contributing](contributing)

0 comments on commit 3fd7b32

Please sign in to comment.