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

release: adds angular 17 support #273

Merged
merged 21 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
192c12c
feat(core): adds angular 17.0.0-next.0 support
pavankjadda Aug 20, 2023
f8260ad
release: bumps versioh to 17.0.0-next.0
pavankjadda Aug 20, 2023
fe7a146
chore: updates github actions files
pavankjadda Sep 13, 2023
c3b2580
feat(core): upgrades to angular 17.0.0-next.4
pavankjadda Sep 13, 2023
ee517a2
feat(core): upgrades to angular 17.0.0-next.6
pavankjadda Oct 2, 2023
a70e0b8
feat(core): upgrades to angular 17.0.0-next.6
pavankjadda Oct 2, 2023
e5d190c
feat(core): upgrades to angular 17.0.0-rc.0
pavankjadda Oct 13, 2023
efd5bfc
chore(ssr-cookie-service): updates ssr-cookie-service RegEx
pavankjadda Oct 23, 2023
a7028d6
feat(core): upgrades to angular 17.0.0-rc.1
pavankjadda Oct 30, 2023
68b4aba
This commit updates the import path for the `REQUEST` token in the `s…
pavankjadda Nov 1, 2023
0add3b2
feat(core): upgrades to angular 17.0.0-rc.2
pavankjadda Nov 3, 2023
f016a03
feat(core): upgrades to angular 17.0.0-rc.2
pavankjadda Nov 3, 2023
bfdf19b
refactor(core): replaces PNPM with NPM for the time being
pavankjadda Nov 3, 2023
b5862ea
Merge branch 'development' into v17
pavankjadda Nov 3, 2023
3b604f6
refactor(core): replaces PNPM with NPM for the time being
pavankjadda Nov 3, 2023
6091c84
chore: Update GitHub workflows to use PNPM instead of NPM
pavankjadda Nov 3, 2023
eb75e6b
Upgrade Angular dependencies to 17.0.0-rc
pavankjadda Nov 3, 2023
d634923
chore(core): updates browserlist
pavankjadda Nov 6, 2023
aeba35d
build: switches from PNPM to NPM
pavankjadda Nov 7, 2023
729b60a
Merge remote-tracking branch 'origin/v17' into v17
pavankjadda Nov 7, 2023
5409e8e
build: switches from PNPM to NPM
pavankjadda Nov 7, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,19 @@ jobs:
node: ['18']
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: pnpm install --frozen-lockfile
run: npm i --legacy-peer-deps
- name: Lint
run: pnpm lint
run: npm run lint
- name: Format check
run: pnpm format:check
run: npm run format:check
- name: Build
run: pnpm build --configuration=production && pnpm build:ngx-cookie-service-ssr --configuration=production
- name: Test
run: pnpm test
run: npm run build --configuration=production && npm run build:ngx-cookie-service-ssr --configuration=production
# - name: Test
# run: npm run test
env:
CI: true
9 changes: 3 additions & 6 deletions .github/workflows/npm_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: latest
- uses: actions/setup-node@v2
with:
node-version: 18
- name: Install NPM Dependencies
run: pnpm install --frozen-lockfile
run: npm install --legacy-peer-deps
- name: Build project
run: pnpm build --configuration=production
run: npm run build --configuration=production
- name: Publish to NPM
uses: JS-DevTools/npm-publish@v1
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
package: dist/ngx-cookie-service/package.json
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/npm_publish_ssr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: npm/action-setup@v2
with:
version: latest
- uses: actions/setup-node@v2
with:
node-version: 18
- name: Install PNPM Dependencies
run: pnpm install --frozen-lockfile
- name: Install NPM Dependencies
run: npm install --legacy-peer-deps
- name: Build project
run: pnpm build:ngx-cookie-service-ssr
run: npm run build:ngx-cookie-service-ssr
- name: Publish to NPM registry
uses: JS-DevTools/npm-publish@v1
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
package: dist/ngx-cookie-service-ssr/package.json
Expand Down
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ dist
.angular
.github
README.md
pnpm-lock.yaml
package-lock.json
Loading