-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #156 from redbearsam/feature/parameter_names
Feature/parameter names
- Loading branch information
Showing
75 changed files
with
796 additions
and
547 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
{ | ||
"name": "git-history", | ||
"private": true, | ||
"version": "0.2.20", | ||
"version": "0.2.21", | ||
"description": "An example of Perspective's own GIT history rendered in Perspective.", | ||
"scripts": { | ||
"start": "node server.js" | ||
}, | ||
"keywords": [], | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@jpmorganchase/perspective": "^0.2.20", | ||
"@jpmorganchase/perspective-viewer": "^0.2.20", | ||
"@jpmorganchase/perspective-viewer-highcharts": "^0.2.20", | ||
"@jpmorganchase/perspective-viewer-hypergrid": "^0.2.20" | ||
"@jpmorganchase/perspective": "^0.2.21", | ||
"@jpmorganchase/perspective-viewer": "^0.2.21", | ||
"@jpmorganchase/perspective-viewer-highcharts": "^0.2.21", | ||
"@jpmorganchase/perspective-viewer-hypergrid": "^0.2.21" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
{ | ||
"name": "simple", | ||
"private": true, | ||
"version": "0.2.20", | ||
"version": "0.2.21", | ||
"description": "A collection of simple client-side Perspective examples.", | ||
"scripts": { | ||
"start": "node server.js" | ||
}, | ||
"keywords": [], | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@jpmorganchase/perspective": "^0.2.20", | ||
"@jpmorganchase/perspective-viewer": "^0.2.20", | ||
"@jpmorganchase/perspective-viewer-highcharts": "^0.2.20", | ||
"@jpmorganchase/perspective-viewer-hypergrid": "^0.2.20" | ||
"@jpmorganchase/perspective": "^0.2.21", | ||
"@jpmorganchase/perspective-viewer": "^0.2.21", | ||
"@jpmorganchase/perspective-viewer-highcharts": "^0.2.21", | ||
"@jpmorganchase/perspective-viewer-hypergrid": "^0.2.21" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,5 @@ | |
], | ||
"npmClient": "yarn", | ||
"useWorkspaces": true, | ||
"version": "0.2.20" | ||
"version": "0.2.21" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Perspective CLI | ||
|
||
```bash | ||
Usage: perspective [options] [command] | ||
|
||
A convenient command-line client for Perspective.js. Can convert between Perspective supported format, or host a local web server. | ||
|
||
Options: | ||
-V, --version output the version number | ||
-h, --help output usage information | ||
|
||
Commands: | ||
convert [options] [filename] Convert a file into a new format. Reads from STDIN if no filename is provided | ||
Options: | ||
-f, --format <format> Which output format to use: arrow, csv, columns, json. | ||
-o, --output <filename> Filename to write to. If not supplied, writes to STDOUT | ||
-h, --help output usage information | ||
|
||
host [options] [filename] Host a file on a local Websocket/HTTP server using a server-side Perspective. Reads from STDIN if no filename is provided | ||
Options: | ||
-p, --port <port> Which port to bind to (default: 8080) | ||
-o, --open Open a browser automagically | ||
-h, --help output usage information | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
module.exports = { | ||
presets: [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
useBuiltIns: "usage" | ||
} | ||
] | ||
], | ||
sourceType: "unambiguous", | ||
plugins: [ | ||
["@babel/plugin-proposal-decorators", {legacy: true}], | ||
"transform-custom-element-classes", | ||
[ | ||
"@babel/plugin-transform-for-of", | ||
{ | ||
loose: true | ||
} | ||
] | ||
] | ||
}; |
Oops, something went wrong.