diff --git a/clients/splore/package.json b/clients/splore/package.json index 76b7bb5aac..912e060c9d 100644 --- a/clients/splore/package.json +++ b/clients/splore/package.json @@ -2,28 +2,29 @@ "name": "noms-splore", "dependencies": { "classnames": "^2.1.3", - "noms": "file:../../js", + "@attic/noms": "^0.0.2", "noms-webpack-config": "file:../../js/webpack-config", "react": "^0.14.1", "react-dom": "^0.14.1" }, "devDependencies": { - "babel-cli": "^6.3.15", - "babel-core": "^6.3.15", - "babel-eslint": "^4.1.5", - "babel-plugin-syntax-async-functions": "^6.3.13", - "babel-plugin-syntax-flow": "^6.3.13", - "babel-plugin-transform-async-to-generator": "^6.3.13", - "babel-plugin-transform-class-properties": "^6.3.13", - "babel-plugin-transform-es2015-destructuring": "^6.3.15", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-plugin-transform-es2015-parameters": "^6.3.13", - "babel-polyfill": "^6.3.14", - "babel-preset-es2015": "^6.3.13", - "babel-preset-react": "^6.3.13", + "babel-cli": "6.6.5", + "babel-core": "6.7.2", + "babel-eslint": "5.0.0", + "babel-generator": "6.7.2", + "babel-plugin-syntax-async-functions": "6.5.0", + "babel-plugin-syntax-flow": "6.5.0", + "babel-plugin-transform-async-to-generator": "6.7.0", + "babel-plugin-transform-class-properties": "6.6.0", + "babel-plugin-transform-es2015-destructuring": "6.6.5", + "babel-plugin-transform-es2015-modules-commonjs": "6.7.0", + "babel-plugin-transform-es2015-parameters": "6.7.0", + "babel-polyfill": "6.7.2", + "babel-preset-es2015": "6.6.0", + "babel-preset-react": "6.5.0", "eslint": "^1.9.0", "eslint-plugin-react": "^3.8.0", - "flow-bin": "^0.21.0", + "flow-bin": "^0.22.1", "http-server": "^0.8.5" }, "scripts": { diff --git a/clients/splore/src/buchheim.js b/clients/splore/src/buchheim.js index b2d5771aa9..1914001349 100644 --- a/clients/splore/src/buchheim.js +++ b/clients/splore/src/buchheim.js @@ -8,7 +8,7 @@ // TreeNode represents one node of the tree visualization. -import type {Ref} from 'noms'; +import type {Ref} from '@attic/noms'; function assertNotNull(v: ?T): T { if (v !== null && v !== undefined) { diff --git a/clients/splore/src/main.js b/clients/splore/src/main.js index 44d9db52e7..d993ea3beb 100644 --- a/clients/splore/src/main.js +++ b/clients/splore/src/main.js @@ -5,8 +5,9 @@ import React from 'react'; // eslint-disable-line no-unused-vars import ReactDOM from 'react-dom'; import {HttpStore, invariant, IndexedMetaSequence, ListLeafSequence, MapLeafSequence, OrderedMetaSequence, NomsList, NomsMap, NomsSet, readValue, Ref, SetLeafSequence, Struct,} - from 'noms'; -import {layout, NodeGraph, TreeNode} from './buchheim.js'; + from '@attic/noms'; +import {layout, TreeNode} from './buchheim.js'; +import type {NodeGraph} from './buchheim.js'; const data: NodeGraph = {nodes: {}, links: {}}; let rootRef: Ref; diff --git a/clients/splore/src/node.js b/clients/splore/src/node.js index 4542de9a3c..83f036b347 100644 --- a/clients/splore/src/node.js +++ b/clients/splore/src/node.js @@ -2,7 +2,7 @@ import classNames from 'classnames'; import React from 'react'; -import {Ref} from 'noms'; +import {Ref} from '@attic/noms'; import nomsServer from './noms_server.js'; type Props = {