Skip to content

Commit 3726b79

Browse files
authored
Merge pull request github#2103 from asger-semmle/remove-rollup-deps
Approved by esben-semmle
2 parents 8896fa5 + 1f2c331 commit 3726b79

File tree

4 files changed

+1
-340
lines changed

4 files changed

+1
-340
lines changed

javascript/extractor/lib/typescript/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,13 @@
55
"typescript": "3.5.1"
66
},
77
"scripts": {
8-
"build": "tsc --project tsconfig.json && rollup -c",
8+
"build": "tsc --project tsconfig.json",
99
"check": "tsc --noEmit --project . && tslint --project .",
1010
"lint": "tslint --project .",
1111
"lint-fix": "tslint --project . --fix"
1212
},
1313
"devDependencies": {
1414
"@types/node": "^9.3.0",
15-
"rollup": "^0.66.6",
16-
"rollup-plugin-commonjs": "^9.2.0",
17-
"rollup-plugin-node-resolve": "^3.4.0",
1815
"tslint": "^5.9.1"
1916
}
2017
}

javascript/extractor/lib/typescript/rollup.config.js

Lines changed: 0 additions & 51 deletions
This file was deleted.

javascript/extractor/lib/typescript/src/typescript.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ let overridePath = process.env['SEMMLE_TYPESCRIPT_HOME'];
33
if (overridePath != null) {
44
module.exports = require(overridePath);
55
} else {
6-
// Unlike the above, this require() call will be rewritten by rollup.
76
module.exports = require('typescript');
87
}

0 commit comments

Comments
 (0)