This commit is contained in:
Erik Arvidsson
2016-03-18 11:18:03 -07:00
parent 94060fc00a
commit 429674ef6c
4 changed files with 21 additions and 19 deletions

View File

@@ -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": {

View File

@@ -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<T>(v: ?T): T {
if (v !== null && v !== undefined) {

View File

@@ -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;

View File

@@ -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 = {