浏览代码

Merge pull request #161 from afshin/example-build-fix

Fix example build
Steven Silvester 9 年之前
父节点
当前提交
ecb6f34f03
共有 2 个文件被更改,包括 3 次插入6 次删除
  1. 1 1
      .travis.yml
  2. 2 5
      example/package.json

+ 1 - 1
.travis.yml

@@ -1,6 +1,6 @@
 language: node_js
 node_js:
-- '0.12'
+- '5'
 sudo: false
 env:
   matrix:

+ 2 - 5
example/package.json

@@ -3,11 +3,9 @@
   "name": "jupyter-js-notebook-example",
   "dependencies": {
     "jupyter-js-notebook": "file:..",
-    "jupyter-js-ui": "^0.5.1",
     "phosphor-commandpalette": "^0.2.0",
     "phosphor-keymap": "^0.7.0",
-    "phosphor-splitpanel": "^1.0.0-rc.1",
-    "phosphor-widget": "^1.0.0-rc.1"
+    "phosphor-splitpanel": "^1.0.0-rc.1"
   },
   "scripts": {
     "build": "tsc --project src && webpack --config webpack.conf.js",
@@ -16,7 +14,6 @@
     "update": "rimraf node_modules/jupyter-js-notebook && npm install"
   },
   "devDependencies": {
-    "concurrently": "^2.0.0",
-    "rimraf": "^2.5.2"
+    "concurrently": "^2.0.0"
   }
 }