-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: run prettier over json, markdown
- Loading branch information
1 parent
c5b5225
commit b552060
Showing
57 changed files
with
2,706 additions
and
2,704 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"lerna": "2.11.0", | ||
"useWorkspaces": true, | ||
"npmClient": "yarn", | ||
"version": "0.1.2" | ||
"lerna": "2.11.0", | ||
"useWorkspaces": true, | ||
"npmClient": "yarn", | ||
"version": "0.1.2" | ||
} |
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,3 +1,3 @@ | ||
## Purpose | ||
|
||
This library contains the API for specifying visulaization scenes. The scene specification API uses the builder pattern extensively. This is the core of the frontend of the visualization system and is used by the React-based API. | ||
This library contains the API for specifying visulaization scenes. The scene specification API uses the builder pattern extensively. This is the core of the frontend of the visualization system and is used by the React-based API. |
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,31 +1,31 @@ | ||
{ | ||
"name": "@chart-parts/builder", | ||
"description": "Visualization components for specifying scenes", | ||
"version": "0.1.1", | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"types": "lib/index.d.ts", | ||
"license": "MIT", | ||
"scripts": { | ||
"clean": "../../../scripts/clean_package.sh", | ||
"build": "../../../scripts/build_package.sh", | ||
"start": "tsc -w --preserveWatchOutput" | ||
}, | ||
"devDependencies": { | ||
"@chart-parts/scales": "^0.1.1" | ||
}, | ||
"dependencies": { | ||
"@chart-parts/interfaces": "^0.1.1", | ||
"@chart-parts/scenegraph": "^0.1.1", | ||
"@types/d3-format": "^1.3.1", | ||
"@types/d3-time-format": "^2.1.0", | ||
"d3-format": "^1.4.1", | ||
"d3-time-format": "^2.1.1", | ||
"lodash": "^4.17.15", | ||
"rxjs": "^6.5.3" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "745ce2d7118a3b17d0c6ce32555582fdc22d88ff" | ||
"name": "@chart-parts/builder", | ||
"description": "Visualization components for specifying scenes", | ||
"version": "0.1.1", | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"types": "lib/index.d.ts", | ||
"license": "MIT", | ||
"scripts": { | ||
"clean": "../../../scripts/clean_package.sh", | ||
"build": "../../../scripts/build_package.sh", | ||
"start": "tsc -w --preserveWatchOutput" | ||
}, | ||
"devDependencies": { | ||
"@chart-parts/scales": "^0.1.1" | ||
}, | ||
"dependencies": { | ||
"@chart-parts/interfaces": "^0.1.1", | ||
"@chart-parts/scenegraph": "^0.1.1", | ||
"@types/d3-format": "^1.3.1", | ||
"@types/d3-time-format": "^2.1.0", | ||
"d3-format": "^1.4.1", | ||
"d3-time-format": "^2.1.1", | ||
"lodash": "^4.17.15", | ||
"rxjs": "^6.5.3" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "745ce2d7118a3b17d0c6ce32555582fdc22d88ff" | ||
} |
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,10 +1,10 @@ | ||
{ | ||
"extends": "../../../tsconfig.json", | ||
"compilerOptions": { | ||
"lib": ["esnext", "dom"], | ||
"outDir": "lib", | ||
"rootDir": "./src", | ||
"baseUrl": "./src" | ||
}, | ||
"files": ["src/index.ts"] | ||
"extends": "../../../tsconfig.json", | ||
"compilerOptions": { | ||
"lib": ["esnext", "dom"], | ||
"outDir": "lib", | ||
"rootDir": "./src", | ||
"baseUrl": "./src" | ||
}, | ||
"files": ["src/index.ts"] | ||
} |
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,6 +1,6 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"composite": false | ||
} | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"composite": false | ||
} | ||
} |
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,3 +1,3 @@ | ||
## Purpose | ||
|
||
This library contains Typescript interfaces for the key architectural pieces of the visualization system. | ||
This library contains Typescript interfaces for the key architectural pieces of the visualization system. |
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,18 +1,18 @@ | ||
{ | ||
"name": "@chart-parts/interfaces", | ||
"description": "Common interfaces for the visualization system, including marks, mark specifications, scenegraphs, and virtual dom definitions", | ||
"version": "0.1.1", | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"types": "lib/index.d.ts", | ||
"license": "MIT", | ||
"scripts": { | ||
"clean": "../../../scripts/clean_package.sh", | ||
"build": "../../../scripts/build_package.sh", | ||
"start": "../../../scripts/watch_package.sh" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "745ce2d7118a3b17d0c6ce32555582fdc22d88ff" | ||
"name": "@chart-parts/interfaces", | ||
"description": "Common interfaces for the visualization system, including marks, mark specifications, scenegraphs, and virtual dom definitions", | ||
"version": "0.1.1", | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"types": "lib/index.d.ts", | ||
"license": "MIT", | ||
"scripts": { | ||
"clean": "../../../scripts/clean_package.sh", | ||
"build": "../../../scripts/build_package.sh", | ||
"start": "../../../scripts/watch_package.sh" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "745ce2d7118a3b17d0c6ce32555582fdc22d88ff" | ||
} |
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,12 +1,12 @@ | ||
{ | ||
"extends": "../../../tsconfig.json", | ||
"compilerOptions": { | ||
"lib": ["esnext"], | ||
"composite": true, | ||
"outDir": "lib", | ||
"rootDir": "./src", | ||
"baseUrl": "./src" | ||
}, | ||
"files": ["src/index.ts"], | ||
"include": ["./src/**/*.ts*"] | ||
"extends": "../../../tsconfig.json", | ||
"compilerOptions": { | ||
"lib": ["esnext"], | ||
"composite": true, | ||
"outDir": "lib", | ||
"rootDir": "./src", | ||
"baseUrl": "./src" | ||
}, | ||
"files": ["src/index.ts"], | ||
"include": ["./src/**/*.ts*"] | ||
} |
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,6 +1,6 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"composite": false | ||
} | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"composite": false | ||
} | ||
} |
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,33 +1,33 @@ | ||
{ | ||
"name": "@chart-parts/react", | ||
"description": "React components for specifying data visualizations", | ||
"version": "0.1.2", | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"types": "lib/index.d.ts", | ||
"license": "MIT", | ||
"scripts": { | ||
"clean": "../../../scripts/clean_package.sh", | ||
"build": "../../../scripts/build_package.sh", | ||
"start": "tsc -w --preserveWatchOutput" | ||
}, | ||
"devDependencies": { | ||
"@types/react": "^16.9.2", | ||
"react": "^16.9.0" | ||
}, | ||
"dependencies": { | ||
"@chart-parts/builder": "^0.1.1", | ||
"@chart-parts/interfaces": "^0.1.1", | ||
"@chart-parts/orchestrator": "^0.1.1", | ||
"@chart-parts/scales": "^0.1.1", | ||
"lodash": "^4.17.15", | ||
"shallowequal": "^1.1.0" | ||
}, | ||
"peerDependencies": { | ||
"react": ">= 16.9" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "745ce2d7118a3b17d0c6ce32555582fdc22d88ff" | ||
"name": "@chart-parts/react", | ||
"description": "React components for specifying data visualizations", | ||
"version": "0.1.2", | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"types": "lib/index.d.ts", | ||
"license": "MIT", | ||
"scripts": { | ||
"clean": "../../../scripts/clean_package.sh", | ||
"build": "../../../scripts/build_package.sh", | ||
"start": "tsc -w --preserveWatchOutput" | ||
}, | ||
"devDependencies": { | ||
"@types/react": "^16.9.2", | ||
"react": "^16.9.0" | ||
}, | ||
"dependencies": { | ||
"@chart-parts/builder": "^0.1.1", | ||
"@chart-parts/interfaces": "^0.1.1", | ||
"@chart-parts/orchestrator": "^0.1.1", | ||
"@chart-parts/scales": "^0.1.1", | ||
"lodash": "^4.17.15", | ||
"shallowequal": "^1.1.0" | ||
}, | ||
"peerDependencies": { | ||
"react": ">= 16.9" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "745ce2d7118a3b17d0c6ce32555582fdc22d88ff" | ||
} |
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,13 +1,13 @@ | ||
{ | ||
"extends": "../../../tsconfig.json", | ||
"compilerOptions": { | ||
"lib": ["esnext", "dom"], | ||
"outDir": "lib", | ||
"experimentalDecorators": true, | ||
"composite": true, | ||
"rootDir": "./src", | ||
"baseUrl": "./src" | ||
}, | ||
"include": ["./src/**/*.ts*"], | ||
"files": ["src/index.ts"] | ||
"extends": "../../../tsconfig.json", | ||
"compilerOptions": { | ||
"lib": ["esnext", "dom"], | ||
"outDir": "lib", | ||
"experimentalDecorators": true, | ||
"composite": true, | ||
"rootDir": "./src", | ||
"baseUrl": "./src" | ||
}, | ||
"include": ["./src/**/*.ts*"], | ||
"files": ["src/index.ts"] | ||
} |
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,6 +1,6 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"composite": false | ||
} | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"composite": false | ||
} | ||
} |
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
Oops, something went wrong.