Skip to content

Commit 1b8bb72

Browse files
committed
feat: bump angular version to 11.0.5
1 parent b82f236 commit 1b8bb72

File tree

114 files changed

+8441
-5230
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+8441
-5230
lines changed

.circleci/config.yml

-150
This file was deleted.

.editorconfig

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
# Editor configuration, see http://editorconfig.org
21
root = true
32

43
[*]
5-
charset = utf-8
64
indent_style = space
7-
indent_size = 2
8-
end_of_line = lf
9-
insert_final_newline = true
5+
indent_size = 4
6+
charset = utf-8
107
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
end_of_line = lf
10+
bracket_spacing = true
11+
max_line_length = 120
12+

.github/workflows/ci-workflow.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
3+
on: [ push ]
4+
5+
jobs:
6+
build:
7+
if: "!contains(github.event.head_commit.message, 'skip ci')"
8+
9+
runs-on: ubuntu-latest
10+
11+
strategy:
12+
matrix:
13+
node-version: [ 14.x ]
14+
15+
steps:
16+
- uses: actions/checkout@v1
17+
- name: Use Node.js ${{ matrix.node-version }}
18+
uses: actions/setup-node@v1
19+
with:
20+
node-version: ${{ matrix.node-version }}
21+
- name: yarn install, build, and test
22+
run: |
23+
yarn
24+
yarn lint
25+
yarn build
+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Publish pre-release version
2+
3+
on:
4+
push:
5+
branches:
6+
- release-candidate
7+
8+
jobs:
9+
build:
10+
if: "!contains(github.event.head_commit.message, 'skip ci')"
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v2
16+
with:
17+
submodules: recursive
18+
token: ${{ secrets.GH_TOKEN }}
19+
20+
- name: Use Node.js 14.x
21+
uses: actions/setup-node@v2
22+
with:
23+
node-version: 14.x
24+
registry-url: 'https://registry.npmjs.org'
25+
26+
- name: Configure Git User
27+
run: |
28+
git config --global user.email "[email protected]"
29+
git config --global user.name "ci@$GITHUB_ACTOR"
30+
31+
- name: yarn install, build
32+
run: |
33+
yarn --no-lockfile
34+
yarn build
35+
36+
- name: Create release version
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
39+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
40+
run: |
41+
npm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN
42+
yarn semantic-release
43+
npx semantic-release
44+
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Publish
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
publish:
10+
if: "!contains(github.event.head_commit.message, 'skip ci')"
11+
name: publish
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v1
16+
- name: Setup Node.jobs
17+
uses: actions/setup-node@v1
18+
with:
19+
node-version: 12
20+
- name: Install and build
21+
run: |
22+
yarn
23+
yarn lint
24+
yarn build
25+
- name: Publish to gh-pages
26+
run: |
27+
yarn build:docs
28+
yarn publish:docs
29+
env:
30+
GH_TOKEN: ${{ github.actor }}:${{ secrets.GH_TOKEN }}
31+
NODE_ENV: production

.github/workflows/relese-workflow.yml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Publish release version
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
if: "!contains(github.event.head_commit.message, 'skip ci')"
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v2
16+
with:
17+
submodules: recursive
18+
token: ${{ secrets.GH_TOKEN }}
19+
20+
- name: Use Node.js 14.x
21+
uses: actions/setup-node@v2
22+
with:
23+
node-version: 14.x
24+
registry-url: 'https://registry.npmjs.org'
25+
26+
- name: Configure Git User
27+
run: |
28+
git config --global user.email "[email protected]"
29+
git config --global user.name "ci@$GITHUB_ACTOR"
30+
31+
- name: yarn install, build
32+
run: |
33+
yarn --frozen-lockfile
34+
yarn build
35+
36+
- name: Create release version
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
39+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
40+
run: |
41+
npm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN
42+
yarn semantic-release
43+
npx semantic-release
44+

.releaserc.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
debug: true
2+
dryRun: false
3+
4+
plugins:
5+
- "@semantic-release/commit-analyzer"
6+
- "@semantic-release/release-notes-generator"
7+
- "@semantic-release/npm"
8+
- "@semantic-release/changelog"
9+
- [
10+
"@semantic-release/git",
11+
message: "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
12+
]
13+
- "@semantic-release/github"
14+
15+
branches:
16+
- main
17+
- name: 'release-candidate'
18+
prerelease: true
19+

ISSUE_TEMPLATE.md

-37
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:warning: **This project is currently unmaintained**
1+
Project forked from unmantained [@angular-redux/platform](https://github.com/angular-redux/platform) to add Ivy compilation support.
22

33
# Angular Redux
44

0 commit comments

Comments
 (0)