Skip to content

Commit 31c08b6

Browse files
committed
More work on generating a small typescript build
1 parent 63feabb commit 31c08b6

File tree

4 files changed

+21
-71
lines changed

4 files changed

+21
-71
lines changed

.dockerignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ scripts/buildProtocol.js
2222
scripts/ior.js
2323
scripts/authors.js
2424
scripts/configurePrerelease.js
25+
scripts/configureTSCBuild.js
2526
scripts/open-user-pr.js
2627
scripts/open-cherry-pick-pr.js
2728
scripts/processDiagnosticMessages.d.ts
@@ -45,4 +46,4 @@ TEST-results.xml
4546
package-lock.json
4647
tests
4748
.vscode
48-
.git
49+
.git

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ scripts/buildProtocol.js
4545
scripts/ior.js
4646
scripts/authors.js
4747
scripts/configurePrerelease.js
48+
scripts/configureTSCBuild.js
4849
scripts/open-user-pr.js
4950
scripts/open-cherry-pick-pr.js
5051
scripts/processDiagnosticMessages.d.ts

scripts/configureTSCBuild.js

-57
This file was deleted.

scripts/configureTSCBuild.ts

+18-13
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,19 @@ import assert = require("assert");
55
import { execSync } from "child_process";
66
const args = process.argv.slice(2);
77

8-
9-
108
/**
119
* A minimal description for a parsed package.json object.
1210
*/
1311
interface PackageJson {
1412
name: string;
1513
bin: {};
1614
main: string;
15+
scripts: {
16+
prepare: string
17+
postpublish: string
18+
}
1719
}
1820

19-
// function exec(path: string, args: string[] = []) {
20-
// const cmdLine = ["node", path, ...args].join(" ");
21-
// console.log(cmdLine);
22-
// execSync(cmdLine);
23-
// }
24-
2521
function main(): void {
2622
if (args.length < 1) {
2723
console.log("Usage:");
@@ -35,9 +31,13 @@ function main(): void {
3531

3632
// Remove the bin section from the current package
3733
delete packageJsonValue.bin;
34+
// We won't be running eslint which would run before publishing
35+
delete packageJsonValue.scripts.prepare;
36+
// No infinite loops
37+
delete packageJsonValue.scripts.postpublish;
3838

3939
// Set the new name
40-
packageJsonValue.name = "@orta/tsc";
40+
packageJsonValue.name = "@orta/language-services";
4141

4242
writeFileSync(packageJsonFilePath, JSON.stringify(packageJsonValue, /*replacer:*/ undefined, /*space:*/ 4));
4343

@@ -54,14 +54,22 @@ function main(): void {
5454
"tsserverlibrary.d.ts"
5555
];
5656

57-
// Get a link to the main dependency JS file, then remove the sibling JS files referenced above
57+
// Get a link to the main dependency JS file
5858
const lib = join(dirname(packageJsonFilePath), packageJsonValue.main);
5959
const libPath = dirname(lib);
60+
61+
// Remove the sibling JS large files referenced above
6062
toRemove.forEach(file => {
6163
const path = join(libPath, file);
6264
if (existsSync(path)) unlinkSync(path);
6365
});
6466

67+
// Remove VS-specific localization keys
68+
execSync("rm -rf loc", { cwd: dirname(packageJsonFilePath) });
69+
70+
// Remove runnable file reference
71+
execSync("rm -rf bin", { cwd: dirname(packageJsonFilePath) });
72+
6573
///////////////////////////////////
6674

6775
// This section verifies that the build of TypeScript compiles and emits
@@ -72,11 +80,8 @@ function main(): void {
7280
const results =ts.transpileModule(source, {
7381
compilerOptions: { module: ts.ModuleKind.CommonJS }
7482
});
75-
console.log(Object.keys(results));
7683

7784
assert(results.outputText.trim() === "var x = 'string';", `Running typescript with ${packageJsonValue.name} did not return the expected results, got: ${results.outputText}`);
78-
79-
8085
}
8186

8287
main();

0 commit comments

Comments
 (0)