Skip to content

Commit

Permalink
Slim package.json to avoid fields relevant to npm publication
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Sep 2, 2021
1 parent 4ffd009 commit 0f5de87
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 16 deletions.
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"
}
}

0 comments on commit 0f5de87

Please sign in to comment.