Skip to content

Commit

Permalink
Merge pull request #182 from neuron-team/publish-update
Browse files Browse the repository at this point in the history
Publish Update and Repo Name Change
  • Loading branch information
LukeyQ1 committed Nov 16, 2018
2 parents 8056154 + 8ab6d19 commit c900a66
Show file tree
Hide file tree
Showing 14 changed files with 55 additions and 73 deletions.
1 change: 0 additions & 1 deletion .vscodeignore
Expand Up @@ -4,7 +4,6 @@ out/test/**
out/**/*.map
src-backend/**
src-frontend/**
src-common/**
!src-backend/media/**
.gitignore
tsconfig.json
Expand Down
20 changes: 15 additions & 5 deletions README.md
@@ -1,6 +1,6 @@
# neuron for Visual Studio Code

### An interactive programming experience for data scientists
### An Interactive Programming Experience for Data Scientists

**neuron** is a robust application that seamlessly combines the power of
Visual Studio Code with the interactivity of Jupyter Notebook.
Expand All @@ -9,7 +9,7 @@ Visual Studio Code with the interactivity of Jupyter Notebook.

## Getting started

Download the latest release from [the releases page](https://github.com/lorenzo2897/vscode-ipe/releases).
Download the latest release from the [releases page](https://github.com/lorenzo2897/vscode-ipe/releases) or via the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=neuron.neuron-IPE).

This extension makes available several commands starting with `IPE:` to control the behaviour.

Expand All @@ -22,12 +22,22 @@ To add a card, select some Python code and run the `Send code to output` command
## Requirements

* You must have at least Visual Studio Code version 1.23.0
* Supports Windows, macOS and Linux

## Release Notes
## 1.0.4 Release Notes

### 1.0.1
* Repo moved to new Organisation
* Minor error printing improvement

Initial Release on VS Code Marketplace
### Known Issues

#### 500 Internal Server Error

When running you may receive a '500 Internal Server Error' message, this usually occurs due to the installation of Jupyter. neuron will try to install it for you however this may not be enough. A simple solution is to run `pip3 install jupyter` in the terminal. For more help go to [Installing Jupyter Notebook](https://jupyter.readthedocs.io/en/latest/install.html)

#### Kernal runs from Home Directory not Current

This issue will be addressed in v1.1


For information about building upon this extension, visit [the guide for developers](DEVELOPING.md).
71 changes: 21 additions & 50 deletions package-lock.json

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

12 changes: 7 additions & 5 deletions package.json
Expand Up @@ -2,9 +2,9 @@
"name": "neuron-IPE",
"displayName": "neuron",
"description": "Interactive Programming Experience for Data Scientists",
"version": "1.0.1",
"version": "1.0.4",
"license": "MIT",
"repository": "https://github.com/lorenzo2897/vscode-ipe",
"repository": "https://github.com/neuron-team/vscode-ipe",
"publisher": "neuron",
"engines": {
"vscode": "^1.23.0"
Expand Down Expand Up @@ -116,8 +116,9 @@
},
"scripts": {
"clean": "shx rm -rf html/ out/",
"vscode:prepublish": "npm run compile",
"build-types": "tsc -p src-common/ && shx cp -r src-common/ node_modules/neuron-ipe-types/",
"vscode:prepublish": "npm run publish",
"publish": "npm run compile-frontend && npm run compile-backend",
"build-types": "npm install ./src-common",
"compile-frontend": "cd src-frontend && npm run build",
"watch-frontend": "npm run build-types && cd src-frontend && npm run watch",
"compile-backend": "tsc -p ./",
Expand All @@ -138,6 +139,7 @@
"dependencies": {
"@jupyterlab/services": "^2.0.3",
"ansi_up": "^3.0.0",
"child-process": "^1.0.2"
"child-process": "^1.0.2",
"neuron-ipe-types": "file:src-common"
}
}
2 changes: 1 addition & 1 deletion src-backend/cardManager.ts
@@ -1,4 +1,4 @@
import { Card, CardOutput } from 'vscode-ipe-types';
import { Card, CardOutput } from 'neuron-ipe-types';
import * as path from "path";
import * as fs from "fs";
import * as vscode from 'vscode';
Expand Down
2 changes: 1 addition & 1 deletion src-backend/contentHelpers.ts
@@ -1,5 +1,5 @@
import { JSONValue, JSONObject, JSONArray } from '@phosphor/coreutils';
import {Card, CardOutput} from 'vscode-ipe-types';
import {Card, CardOutput} from 'neuron-ipe-types';
import { Kernel, ServerConnection, KernelMessage } from '@jupyterlab/services';

import * as vscode from 'vscode';
Expand Down

0 comments on commit c900a66

Please sign in to comment.