@@ -14,7 +14,7 @@ import util from "util";
1414import { localizationDirectories } from "./scripts/build/localization.mjs" ;
1515import cmdLineOptions from "./scripts/build/options.mjs" ;
1616import { buildProject , cleanProject , watchProject } from "./scripts/build/projects.mjs" ;
17- import { localBaseline , localRwcBaseline , refBaseline , refRwcBaseline , runConsoleTests } from "./scripts/build/tests.mjs" ;
17+ import { localBaseline , refBaseline , runConsoleTests } from "./scripts/build/tests.mjs" ;
1818import { Debouncer , Deferred , exec , getDiffTool , memoize , needsUpdate , readJson } from "./scripts/build/utils.mjs" ;
1919
2020const glob = util . promisify ( _glob ) ;
@@ -740,12 +740,6 @@ export const diff = task({
740740 run : ( ) => exec ( getDiffTool ( ) , [ refBaseline , localBaseline ] , { ignoreExitCode : true , waitForExit : false } ) ,
741741} ) ;
742742
743- export const diffRwc = task ( {
744- name : "diff-rwc" ,
745- description : "Diffs the RWC baselines using the diff tool specified by the 'DIFF' environment variable" ,
746- run : ( ) => exec ( getDiffTool ( ) , [ refRwcBaseline , localRwcBaseline ] , { ignoreExitCode : true , waitForExit : false } ) ,
747- } ) ;
748-
749743/**
750744 * @param {string } localBaseline Path to the local copy of the baselines
751745 * @param {string } refBaseline Path to the reference copy of the baselines
@@ -780,12 +774,6 @@ export const baselineAccept = task({
780774 run : baselineAcceptTask ( localBaseline , refBaseline ) ,
781775} ) ;
782776
783- export const baselineAcceptRwc = task ( {
784- name : "baseline-accept-rwc" ,
785- description : "Makes the most recent rwc test results the new baseline, overwriting the old baseline" ,
786- run : baselineAcceptTask ( localRwcBaseline , refRwcBaseline ) ,
787- } ) ;
788-
789777// TODO(rbuckton): Determine if we still need this task. Depending on a relative
790778// path here seems like a bad idea.
791779export const updateSublime = task ( {
@@ -799,13 +787,6 @@ export const updateSublime = task({
799787 }
800788} ) ;
801789
802- // TODO(rbuckton): Should the path to DefinitelyTyped be configurable via an environment variable?
803- export const importDefinitelyTypedTests = task ( {
804- name : "importDefinitelyTypedTests" ,
805- description : "Runs the importDefinitelyTypedTests script to copy DT's tests to the TS-internal RWC tests" ,
806- run : ( ) => exec ( process . execPath , [ "scripts/importDefinitelyTypedTests.mjs" , "./" , "../DefinitelyTyped" ] ) ,
807- } ) ;
808-
809790
810791export const produceLKG = task ( {
811792 name : "LKG" ,
0 commit comments