mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
9 years ago
12 changed files with 21 additions and 26 deletions
@ -1,4 +1,4 @@ |
|||||
module.exports = { |
module.exports = { |
||||
description: 'allows reassigments to default parameters that shadow imports', |
description: 'allows reassigments to default parameters that shadow imports', |
||||
babel: true |
buble: true |
||||
}; |
}; |
||||
|
@ -1,6 +1,6 @@ |
|||||
module.exports = { |
module.exports = { |
||||
description: 'imports a default class', |
description: 'imports a default class', |
||||
babel: true |
buble: true |
||||
}; |
}; |
||||
|
|
||||
// test copied from https://github.com/esnext/es6-module-transpiler/tree/master/test/examples/export-default-class
|
// test copied from https://github.com/esnext/es6-module-transpiler/tree/master/test/examples/export-default-class
|
||||
|
@ -1,6 +1,6 @@ |
|||||
module.exports = { |
module.exports = { |
||||
description: 'imports a named class', |
description: 'imports a named class', |
||||
babel: true |
buble: true |
||||
}; |
}; |
||||
|
|
||||
// test copied from https://github.com/esnext/es6-module-transpiler/tree/master/test/examples/export-named-class
|
// test copied from https://github.com/esnext/es6-module-transpiler/tree/master/test/examples/export-named-class
|
||||
|
@ -1,6 +1,6 @@ |
|||||
module.exports = { |
module.exports = { |
||||
description: 'imports a nameless class expression', |
description: 'imports a nameless class expression', |
||||
babel: true |
buble: true |
||||
}; |
}; |
||||
|
|
||||
// test copied from https://github.com/esnext/es6-module-transpiler/tree/master/test/examples/export-class-expression
|
// test copied from https://github.com/esnext/es6-module-transpiler/tree/master/test/examples/export-class-expression
|
||||
|
@ -1,4 +1,4 @@ |
|||||
module.exports = { |
module.exports = { |
||||
description: 'handles naked return value from top-level arrow function expression (#403)', |
description: 'handles naked return value from top-level arrow function expression (#403)', |
||||
babel: true |
buble: true |
||||
}; |
}; |
||||
|
Loading…
Reference in new issue