Skip to content

Commit

Permalink
Merge pull request #77 from HarishGangula/release-5.6.0
Browse files Browse the repository at this point in the history
Issue #KN-984 feat: Angular migration from 15 to 16
  • Loading branch information
pallakartheekreddy authored May 7, 2024
2 parents 358cc2a + fa44720 commit dcfffcf
Show file tree
Hide file tree
Showing 17 changed files with 5,055 additions and 3,378 deletions.
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

0 comments on commit dcfffcf

Please sign in to comment.