mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-15 00:50:22 -06:00
Splore
This commit is contained in:
@@ -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": {
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user