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

Adopt monorepo structure #808

Merged
merged 12 commits into from
Jan 21, 2021
Prev Previous commit
Next Next commit
Add styleModule
  • Loading branch information
jtpio committed Jan 20, 2021
commit 405a683501024c36d77027a1ec23acc2e4e9dae6
15 changes: 3 additions & 12 deletions packages/jupyterlab-preview/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@
"url": "https://github.com/voila-dashboards/voila.git"
},
"style": "style/index.css",
"styleModule": "style/index.js",
"sideEffects": [
"style/*.css"
"style/*.css",
"style/index.js"
],
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
Expand Down Expand Up @@ -69,17 +71,6 @@
"rimraf": "^2.6.1",
"typescript": "~4.1.3"
},
"lint-staged": {
"**/*{.ts,.tsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema",
Expand Down
1 change: 1 addition & 0 deletions packages/jupyterlab-preview/style/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import './index.css';