Skip to content

Commit

Permalink
feature/upgrade-angular-14.2.0 (#48)
Browse files Browse the repository at this point in the history
* upgrade angular/core to v14.2.0

* upgrade angular/material to v14.2.0

* upgrade angular-architects/module-federation to v14.3.10

* upgrade ngrx/store to v14.3.0

* uninstall @nguniversal/module-map-ngfactory-loader

* upgrade ngx-build-plus to v14.0

* upgrade ng-packagr and @schematics/angular

* improve zoneJs version

* update package lock json

* patch app version

* temporary fix for vercel/turbo#1749

* trying again: temporary fix for vercel/turbo#1749
  • Loading branch information
Vugar committed Sep 1, 2022
1 parent 9f3c8d4 commit 2b4c83d
Show file tree
Hide file tree
Showing 4 changed files with 3,571 additions and 11,164 deletions.
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,29 @@ jobs:
setup:
working_directory: ~/youtube-webapp-turborepo
docker:
- image: circleci/node:16-browsers
- image: circleci/node:16-browsers
steps:
- checkout
- restore_cache:
key: v1-deps-{{ checksum "package-lock.json" }}
key: v1-deps-{{ checksum "package-lock.json" }}
- run:
name: install-dependencies
command: npm ci
command: npm install --no-package-lock
- save_cache:
key: v1-deps-{{ checksum "package-lock.json" }}
paths:
- node_modules
paths:
- node_modules
lint:
working_directory: ~/youtube-webapp-turborepo
docker:
- image: circleci/node:16-browsers
steps:
- checkout
- restore_cache:
key: v1-deps-{{ checksum "package-lock.json" }}
key: v1-deps-{{ checksum "package-lock.json" }}
- run:
name: install-dependencies
command: npm ci
command: npm install
- run:
name: angular-lint
command: npm run lint
Expand All @@ -36,7 +36,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: v1-deps-{{ checksum "package-lock.json" }}
key: v1-deps-{{ checksum "package-lock.json" }}
- run:
name: angular-build
command: npm run build
Expand All @@ -45,7 +45,7 @@ workflows:
version: 2
lint_and_build:
jobs:
- setup
- setup
- lint:
requires:
- setup
Expand Down
2 changes: 1 addition & 1 deletion apps/shell/src/app.constants.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ICommonMetaTagConfig } from '@youtube/common-ui';

export const APP_VERSION = '1.0.27';
export const APP_VERSION = '1.0.30';

export const SHELL_META_TAGS: ICommonMetaTagConfig = {
title: 'Youtube Angular Clone',
Expand Down

0 comments on commit 2b4c83d

Please sign in to comment.