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 #IQ-687 feat: Updating latest package depenencies #80

Closed
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
4 changes: 2 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
],
"styles": [
"projects/quml-demo-app/src/styles.css",
"./node_modules/@project-sunbird/sb-styles/assets/_styles.scss",
"./node_modules/@project-sunbird/sb-styles/assets/styles.scss",
"projects/quml-library/src/lib/assets/styles/quml-carousel.css",
"./node_modules/katex/dist/katex.min.css"
],
Expand Down Expand Up @@ -183,7 +183,7 @@
],
"styles": [
"./projects/quml-player-wc/src/styles.scss",
"./node_modules/@project-sunbird/sb-styles/assets/_styles.scss",
"./node_modules/@project-sunbird/sb-styles/assets/styles.scss",
"projects/quml-library/src/lib/assets/styles/quml-carousel.css",
"./node_modules/katex/dist/katex.min.css"
],
Expand Down
3,461 changes: 1,292 additions & 2,169 deletions package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,19 @@
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"@project-sunbird/client-services": "4.9.1",
"@project-sunbird/sb-styles": "0.0.9",
"@project-sunbird/telemetry-sdk": "0.0.29",
"@project-sunbird/client-services": "7.0.4",
"@project-sunbird/sb-styles": "0.0.16",
"@project-sunbird/telemetry-sdk": "1.3.0",
"@project-sunbird/sunbird-player-sdk-v9": "6.0.5",
"bootstrap": "^4.6.2",
"bootstrap": "^5.3.3",
"core-js": "^2.5.4",
"document-register-element": "^1.7.2",
"jquery": "^3.5.1",
"katex": "^0.11.1",
"lodash-es": "^4.17.21",
"ngx-bootstrap": "^11.0.0",
"rxjs": "~6.6.7",
"tslib": "^2.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"uuid": "^3.4.0",
"zone.js": "~0.13.3"
},
Expand Down
4 changes: 2 additions & 2 deletions projects/quml-library/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@project-sunbird/sunbird-quml-player",
"version": "8.0.0-alpha.0",
"version": "8.0.0-alpha.1",
"schematics": "./schematics/collection.json",
"ng-add": {
"save": "dependencies"
Expand All @@ -15,7 +15,7 @@
"katex": "^0.11.1",
"ngx-bootstrap": "^11.0.0",
"lodash-es": "^4.17.21",
"@project-sunbird/client-services": "4.9.1"
"@project-sunbird/client-services": "7.0.4"
},
"dependencies": {
"@project-sunbird/sunbird-player-sdk-v9": "6.0.5"
Expand Down
8 changes: 4 additions & 4 deletions projects/quml-library/schematics/ng-add/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ import { Schema } from './schema';

const VERSIONS = {
// These required peer-dependency will get installed on build time if not exist
'@project-sunbird/client-services': '^4.9.1',
'@project-sunbird/sb-styles': '0.0.9',
'bootstrap': '^4.6.2',
'@project-sunbird/client-services': '7.0.4',
'@project-sunbird/sb-styles': '0.0.16',
'bootstrap': '^5.3.3',
'jquery': '^3.5.1',
'lodash-es': '^4.17.21',
"katex": "^0.11.1",
'ngx-bootstrap': '^10.0.0'
'ngx-bootstrap': '^11.0.0'
};

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Schema } from '../schema';

const STYLE_FILEPATH = [
'node_modules/@project-sunbird/sunbird-quml-player/lib/assets/styles/quml-carousel.css',
'node_modules/@project-sunbird/sb-styles/assets/_styles.scss',
'node_modules/@project-sunbird/sb-styles/assets/styles.scss',
'node_modules/katex/dist/katex.min.css',
];

Expand Down
2 changes: 1 addition & 1 deletion web-component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@project-sunbird/sunbird-quml-player-web-component",
"version": "4.0.0-alpha.0",
"version": "4.0.0-alpha.1",
"description": "The web component package for the sunbird QuML player",
"main": "sunbird-quml-player.js",
"scripts": {
Expand Down
Loading