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

Slim package.json to avoid fields relevant to npm publication #212

Merged
merged 1 commit into from
Sep 2, 2021
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: 3 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The PyPI release is done automatically by TravisCI when a tag is pushed.
[`nbgitpuller/version.py`](nbgitpuller/version.py)
and make a commit.

```
```shell
git add nbgitpuller/version.py
VERSION=... # e.g. 1.2.3
git commit -m "release $VERSION"
Expand All @@ -33,7 +33,8 @@ The PyPI release is done automatically by TravisCI when a tag is pushed.
1. Reset the `__version__` variable in
[`nbgitpuller/version.py`](nbgitpuller/version.py)
to an incremented patch version with a `dev` element, then make a commit.
```

```shell
git add nbgitpuller/version.py
git commit -m "back to dev"
```
Expand Down
16 changes: 2 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"name": "nbgitpuller",
"version": "0.10.1",
"description": "`nbgitpuller`",
"description": "Dependencies to build nbgitpuller/static/dist/bundle.js from nbgitpuller/static/js/index.js with webpack.",
"devDependencies": {
"jquery": "^3.6.0",
"webpack": "^5.45.1",
Expand All @@ -14,15 +12,5 @@
"scripts": {
"webpack": "webpack",
"webpack:watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jupyterhub/nbgitpuller.git"
},
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/jupyterhub/nbgitpuller/issues"
},
"homepage": "https://github.com/jupyterhub/nbgitpuller#readme"
}
}