mirror of https://github.com/webpack/webpack.git
fixed beautify issues
This commit is contained in:
parent
fe0c8cafb3
commit
c3e6fcf36a
|
|
@ -106,5 +106,4 @@ exportPlugins(exports.optimize = {}, "./optimize", [
|
|||
"OccurrenceOrderPlugin",
|
||||
"UglifyJsPlugin"
|
||||
]);
|
||||
exportPlugins(exports.dependencies = {}, "./dependencies", [
|
||||
]);
|
||||
exportPlugins(exports.dependencies = {}, "./dependencies", []);
|
||||
|
|
|
|||
|
|
@ -202,15 +202,13 @@ describe("Parser", function() {
|
|||
|
||||
it("should parse comments", function() {
|
||||
var source = "//comment1\n/*comment2*/";
|
||||
var state = [
|
||||
{
|
||||
type: 'Line',
|
||||
value: 'comment1'
|
||||
}, {
|
||||
type: 'Block',
|
||||
value: 'comment2'
|
||||
}
|
||||
];
|
||||
var state = [{
|
||||
type: 'Line',
|
||||
value: 'comment1'
|
||||
}, {
|
||||
type: 'Block',
|
||||
value: 'comment2'
|
||||
}];
|
||||
|
||||
var testParser = new Parser({});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue