Skip to content

Commit

Permalink
Add support for IPyWidgets 8 (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne authored Feb 7, 2023
1 parent 157f013 commit 50c21b3
Show file tree
Hide file tree
Showing 17 changed files with 2,179 additions and 2,181 deletions.
4 changes: 2 additions & 2 deletions .azure-pipelines/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ resources:

parameters:
- name: publishPackage
displayName: 🚀 Publish @vscode/jupyter-ipywidgets7
displayName: 🚀 Publish @vscode/jupyter-ipywidgets8
type: boolean
default: false

extends:
template: azure-pipelines/npm-package/pipeline.yml@templates
parameters:
npmPackages:
- name: jupyter-ipywidgets7
- name: jupyter-ipywidgets8
testPlatforms: []

buildSteps:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ npm-debug.log
bin/**
obj/**
tmp/**
tsconfig.tsbuildinfo
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v16.14.2
33 changes: 33 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Contributing to the IPyWidgets npm package for Jupyter Extension in Visual Studio Code

## Contributing a pull request

### Prerequisites

1. [Node.js](https://nodejs.org/) 16.14.2
2. [npm](https://www.npmjs.com/) 8.15.1
4. Windows, macOS, or Linux
5. [Visual Studio Code](https://code.visualstudio.com/)

### Setup

```shell
git clone https://github.com/Microsoft/vscode-jupyter-ipywidgets
cd vscode-jupyter-ipywidgets
npm ci
```

### Build

You can compile from the command-line. For a full compile you can use:

```shell
npx run build:dev
```

### Errors and Warnings

TypeScript errors and warnings will be displayed in the `Problems` window of Visual Studio Code.

## Branches
* `main` branch is to be used for the maintenance of the v8 package (`@vscode/jupyter-ipywidgets8`).
Loading

0 comments on commit 50c21b3

Please sign in to comment.