Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename to fast svg #10

Merged
merged 29 commits into from
May 26, 2022
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
4573a34
feat: setup release
Karnaukhov-kh May 12, 2022
705c626
fix: revert lint
Karnaukhov-kh May 12, 2022
ece3e49
fix: revert project.json
Karnaukhov-kh May 12, 2022
6bc4f61
fix: change build command
Karnaukhov-kh May 12, 2022
927bae3
refacotr: rename internals
Karnaukhov-kh May 12, 2022
a171fd9
refactor: rename internal files
Karnaukhov-kh May 12, 2022
db746f2
refactor: rename configuration
Karnaukhov-kh May 12, 2022
bcabbcf
refactor: update READMEs
Karnaukhov-kh May 12, 2022
92a0622
refactor: fix demos
Karnaukhov-kh May 12, 2022
a03348d
Merge branch 'setup-release' of https://github.com/push-based/ngx-fas…
Karnaukhov-kh May 12, 2022
424fdf7
refactor: optimize fetching
Karnaukhov-kh May 13, 2022
1e5aa7b
Merge pull request #11 from push-based/ultimate-fetch
Karnaukhov-kh May 13, 2022
78d1834
feat: use template tag to store cache
Karnaukhov-kh May 19, 2022
039924b
Merge branch 'main' of https://github.com/push-based/ngx-fast-icon in…
Karnaukhov-kh May 19, 2022
22bfafe
feat: setup release
Karnaukhov-kh May 19, 2022
319ca96
fix: use node v18 in ci
Karnaukhov-kh May 19, 2022
bbb404d
fix: use origin/main as default branch
Karnaukhov-kh May 19, 2022
433a28e
fix: update release config
Karnaukhov-kh May 19, 2022
36d85de
Update packages/ngx-fast-lib/README.md
BioPhoton May 19, 2022
6b0a0e5
fix: restore ssr load to previous state
Karnaukhov-kh May 20, 2022
27de4f9
fix: update readme comparison tables
Karnaukhov-kh May 20, 2022
5cb2504
fix: add missing routes file
Karnaukhov-kh May 24, 2022
b39b7b0
fix: fix ssr demo
Karnaukhov-kh May 25, 2022
e64503d
fix: fix ssr strategy and cache
Karnaukhov-kh May 25, 2022
9f66b52
refactor: update readmes
Karnaukhov-kh May 25, 2022
e835428
fix: change readme headings
Karnaukhov-kh May 25, 2022
c395a3b
fix: remove template tag
Karnaukhov-kh May 26, 2022
e1a2022
fix: demo build
Karnaukhov-kh May 26, 2022
71b1cd6
fix: comment out some comparisons
Karnaukhov-kh May 26, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v1
Expand All @@ -19,7 +19,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: install
run: yarn
run: npm i
- name: build
run: npm run nx -- affected:build
- name: test
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ on:
branches:
- main
paths-ignore:
- "*.md"
- '*.md'

jobs:
release:
# This line is critical for copy paste issues
if: github.repository == 'push-based/user-flow'
if: github.repository == 'push-based/ngx-fast-svg'
timeout-minutes: 5
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v3
Expand All @@ -30,7 +30,7 @@ jobs:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org
- name: install
run: yarn
run: npm i
- name: build
run: npm run nx -- affected:build
- name: test
Expand All @@ -39,5 +39,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run nx -- run cli:version

run: npm run nx -- run ngx-fast-lib:version
4 changes: 2 additions & 2 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"extends": "@nrwl/workspace/presets/core.json",
"npmScope": "ngx-fast-icon",
"npmScope": "ngx-fast-svg",
"affected": {
"defaultBase": "main"
"defaultBase": "origin/main"
},
"cli": {
"defaultCollection": "@nrwl/angular"
Expand Down