-
Notifications
You must be signed in to change notification settings - Fork 62
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 #4283 from GordonSmith/V3_CODEMIRROR
feat: Upgrade codemirror to v3
- Loading branch information
Showing
30 changed files
with
1,875 additions
and
1,028 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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,20 +1,36 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "gen-types-watch", | ||
"type": "npm", | ||
"script": "compile-umd-watch", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"script": "gen-types-watch", | ||
"problemMatcher": [ | ||
"$tsc-watch" | ||
], | ||
"label": "npm: compile-umd-watch", | ||
"detail": "tsc --module umd --outDir ./lib-umd --watch" | ||
"presentation": { | ||
"group": "group-build" | ||
} | ||
}, | ||
{ | ||
"label": "bundle-watch", | ||
"type": "npm", | ||
"script": "bundle-watch", | ||
"problemMatcher": [], | ||
"presentation": { | ||
"group": "group-build" | ||
} | ||
}, | ||
{ | ||
"label": "build", | ||
"dependsOn": [ | ||
"gen-types-watch", | ||
"bundle-watch", | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} |
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,12 @@ | ||
import { browserTpl } from "@hpcc-js/esbuild-plugins"; | ||
import pkg from "./package.json" with { type: "json" }; | ||
|
||
// config --- | ||
await Promise.all([ | ||
browserTpl("src/index.ts", "dist/index", { | ||
keepNames: true, | ||
external: [ | ||
...Object.keys(pkg.dependencies), | ||
] | ||
}) | ||
]); |
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 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 |
---|---|---|
@@ -1,11 +1,24 @@ | ||
{ | ||
"extends": "../tsconfig.settings.json", | ||
"compilerOptions": { | ||
"rootDir": "./src", | ||
"outDir": "./lib-umd", | ||
"declarationDir": "./types", | ||
"rootDir": "src", | ||
"module": "NodeNext", | ||
"target": "ESNext", | ||
"resolveJsonModule": true, | ||
"emitDeclarationOnly": true, | ||
"declaration": true, | ||
"declarationDir": "types", | ||
"strict": true, | ||
"noImplicitAny": false, | ||
"strictNullChecks": false, | ||
"skipLibCheck": true, | ||
"allowImportingTsExtensions": true, | ||
"lib": [ | ||
"DOM", | ||
"ESNext", | ||
"ES2020" | ||
] | ||
}, | ||
"include": [ | ||
"./src/**/*" | ||
"./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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "test-browser", | ||
"type": "msedge", | ||
"request": "launch", | ||
"url": "http://localhost:63315", | ||
"webRoot": "${workspaceFolder}", | ||
"outFiles": [ | ||
"${workspaceFolder}/**/*.js", | ||
"!**/node_modules/**" | ||
], | ||
}, | ||
{ | ||
"name": "test-node", | ||
"type": "node", | ||
"request": "launch", | ||
"runtimeArgs": [ | ||
"run-script", | ||
"test-node" | ||
], | ||
"runtimeExecutable": "npm", | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"outFiles": [ | ||
"${workspaceFolder}/**/*.js", | ||
"!**/node_modules/**" | ||
], | ||
}, | ||
{ | ||
"name": "index.html", | ||
"request": "launch", | ||
"type": "msedge", | ||
"url": "file:///${workspaceFolder}/index.html", | ||
"runtimeArgs": [ | ||
"--disable-web-security" | ||
], | ||
"webRoot": "${workspaceFolder}", | ||
"outFiles": [ | ||
"${workspaceFolder}/**/*.js", | ||
"!**/node_modules/**" | ||
] | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { browserTpl } from "@hpcc-js/esbuild-plugins"; | ||
import pkg from "./package.json" with { type: "json" }; | ||
|
||
// config --- | ||
await Promise.all([ | ||
browserTpl("src/index.ts", "dist/index", { | ||
keepNames: true, | ||
alias: { | ||
"d3-array": "@hpcc-js/common", | ||
"d3-brush": "@hpcc-js/common", | ||
"d3-collection": "@hpcc-js/common", | ||
"d3-color": "@hpcc-js/common", | ||
"d3-dispatch": "@hpcc-js/common", | ||
"d3-drag": "@hpcc-js/common", | ||
"d3-dsv": "@hpcc-js/common", | ||
"d3-ease": "@hpcc-js/common", | ||
"d3-format": "@hpcc-js/common", | ||
"d3-interpolate": "@hpcc-js/common", | ||
"d3-scale": "@hpcc-js/common", | ||
"d3-selection": "@hpcc-js/common", | ||
"d3-time-format": "@hpcc-js/common", | ||
"d3-transition": "@hpcc-js/common", | ||
"d3-zoom": "@hpcc-js/common" | ||
}, | ||
external: [ | ||
...Object.keys(pkg.dependencies), | ||
] | ||
}) | ||
]); |
Oops, something went wrong.