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

Issue #KN-984 feat: Angular migration from 15 to 16 #77

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
13 changes: 11 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
version: 2.1
orbs:
browser-tools: circleci/[email protected]
jobs:
build:
working_directory: ~/sunbird-epub-player
docker:
- image: circleci/node:16.13.1-browsers
- image: cimg/node:20.4.0-browsers
steps:
- browser-tools/install-chrome
- browser-tools/install-chromedriver
- run:
command: |
google-chrome --version
chromedriver --version
name: Check install
- checkout:
path: ~/sunbird-epub-player
- run:
Expand All @@ -15,7 +24,7 @@ jobs:
command: cd projects/sunbird-epub-player && npm install --no-progress --legacy-peer-deps && npx audit-ci@^6 --config ./audit-ci.jsonc && rm -rf node_modules
- run:
name: Node install
command: npm install --no-progress --legacy-peer-deps
command: npm install --no-progress --force
- run:
name: Linting
command: npm run lint
Expand Down
2 changes: 1 addition & 1 deletion assets-copy.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const fs = require('fs-extra');
(async () => {
try {
var source = "projects/sunbird-epub-player/node_modules/@project-sunbird/sunbird-player-sdk-v9/lib/assets";
var source = "node_modules/@project-sunbird/sunbird-player-sdk-v9/lib/assets";
const dest = "dist/sunbird-epub-player/lib/assets/";
const isAssetsExists = await fs.pathExists(dest)

Expand Down
Loading