Skip to content

Commit

Permalink
feature(extract): write the new 'followSymlinks' option to the extrac…
Browse files Browse the repository at this point in the history
…tion object as well
  • Loading branch information
sverweij committed Feb 19, 2018
1 parent 3903e93 commit 6e3ea52
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 8 deletions.
3 changes: 2 additions & 1 deletion src/extract/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ function makeOptionsPresentable(pOptions) {
"moduleSystems",
"outputType",
"prefix",
"tsPreCompilationDeps"
"tsPreCompilationDeps",
"preserveSymlinks"
];

return SHARABLE_OPTIONS
Expand Down
3 changes: 2 additions & 1 deletion test/cli/fixtures/cjs.dir.filtered.json
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,8 @@
"es6"
],
"outputType": "json",
"tsPreCompilationDeps": false
"tsPreCompilationDeps": false,
"preserveSymlinks": false
}
}
}
3 changes: 2 additions & 1 deletion test/cli/fixtures/cjs.dir.json
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,8 @@
"es6"
],
"outputType": "json",
"tsPreCompilationDeps": false
"tsPreCompilationDeps": false,
"preserveSymlinks": false
}
}
}
3 changes: 2 additions & 1 deletion test/cli/fixtures/cjs.file.json
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,8 @@
"es6"
],
"outputType": "json",
"tsPreCompilationDeps": false
"tsPreCompilationDeps": false,
"preserveSymlinks": false
}
}
}
3 changes: 2 additions & 1 deletion test/cli/fixtures/multiple-in-one-go.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@
"es6"
],
"outputType": "json",
"tsPreCompilationDeps": false
"tsPreCompilationDeps": false,
"preserveSymlinks": false
}
}
}
3 changes: 2 additions & 1 deletion test/main/fixtures/jsx.json
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@
"totalCruised": 8,
"optionsUsed": {
"moduleSystems": ["amd", "cjs", "es6"],
"tsPreCompilationDeps": false
"tsPreCompilationDeps": false,
"preserveSymlinks": false
}
}
}
3 changes: 2 additions & 1 deletion test/main/fixtures/ts.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@
"totalCruised": 6,
"optionsUsed":{
"moduleSystems": ["amd", "cjs", "es6"],
"tsPreCompilationDeps": false
"tsPreCompilationDeps": false,
"preserveSymlinks": false
}
}
}
3 changes: 2 additions & 1 deletion test/main/fixtures/tsx.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@
"totalCruised": 3,
"optionsUsed": {
"moduleSystems": ["amd", "cjs", "es6"],
"tsPreCompilationDeps": false
"tsPreCompilationDeps": false,
"preserveSymlinks": false
}
}
}

0 comments on commit 6e3ea52

Please sign in to comment.