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

Add support for IPyWidgets 8 #19

Merged
merged 11 commits into from
Feb 7, 2023
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
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