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

Prepare for publishing package to npm registry #1190

Merged
merged 1 commit into from
Apr 1, 2020
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
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,6 @@ doc/**/*.json
builtdocs/
.doit.db

# bokeh model cache
panel/models/*.json
node_modules
package-lock.json

# vscode settings
.vscode/
.vscode/panel.code-workspace
Expand Down
1 change: 1 addition & 0 deletions panel/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/node_modules/
/dist/
/.bokeh
/holoviz-panel*.tgz
354 changes: 354 additions & 0 deletions panel/package-lock.json

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

15 changes: 11 additions & 4 deletions panel/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"name": "panel",
"version": "0.0.1",
"name": "@holoviz/panel",
"version": "0.9.3",
"description": "A high level dashboarding library for python visualization libraries.",
"license": "BSD-3-Clause",
"repository": {},
"repository": {
"type": "git",
"url": "https://github.com/holoviz/panel.git"
},
"dependencies": {
"@bokeh/bokehjs": "^2.0.0",
"@types/gl-matrix": "^2.4.5",
Expand All @@ -13,5 +16,9 @@
"@types/debounce": "^1.2.0",
"@luma.gl/constants": "^8.0.3"
},
"devDependencies": {}
"devDependencies": {},
"files": [
"dist/**/*.{js,js.map,d.ts,json}"
],
"main": "dist/panel.min.js"
}