Skip to content

Commit

Permalink
Add scheduler package and update font-awesome
Browse files Browse the repository at this point in the history
version
  • Loading branch information
DonJayamanne committed Oct 26, 2023
1 parent d456d59 commit b7612b8
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 21 deletions.
37 changes: 18 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"prepack": "npm run clean && npm run build",
"build": "node scripts/postInstall.js && npm run clean && tsc && webpack --mode=production",
"build:dev": "node scripts/postInstall.js && npm run clean && tsc && webpack",
"analyze": "node scripts/postInstall.js && npm run clean && tsc && webpack --json > out/stats.json && npx webpack-bundle-analyzer out/stats.json -p=8981",
"analyze": "node scripts/postInstall.js && npm run clean && tsc && webpack --json > out/stats.json && npx webpack-bundle-analyzer out/stats.json -p",
"clean": "rimraf out && rimraf tsconfig.tsbuildinfo && rimraf dist",
"lint": "eslint -c .eslintrc.js --ext .ts src"
},
Expand Down Expand Up @@ -85,6 +85,7 @@
"@lumino/properties": "^2.0.1",
"@lumino/signaling": "^2.1.2",
"@lumino/widgets": "^2.3.0",
"font-awesome": "^4.7.0"
"font-awesome": "^4.7.0",
"scheduler": "^0.23.0"
}
}
8 changes: 8 additions & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ module.exports = [
publicPath: 'built/',
pathinfo: false
},
externals: [
// These are used by @jupyterlab/ui-components
// However those UI components never end up getting displayed.
'@rjsf/core',
// These are used by @jupyterlab/ui-components
// However those UI components never end up getting displayed.
'@rjsf/utils'
],
resolve: {
modules: [path.resolve(__dirname, 'node_modules'), path.resolve(__dirname, './')]
},
Expand Down

0 comments on commit b7612b8

Please sign in to comment.