mirror of
https://github.com/danog/react-datalist-input.git
synced 2024-12-12 09:29:56 +01:00
0423540ae7
- moves project to babel 7 - moves from webpack to rollup - adds react and react-dom to dev dependencies - adds react-testing-libary and jest - adds first unit test - adds eslint and eslint plugins to dev dependencies
15 lines
314 B
JavaScript
15 lines
314 B
JavaScript
'use strict';
|
|
|
|
// This is a custom Jest transformer turning style imports into empty objects.
|
|
// http://facebook.github.io/jest/docs/en/webpack.html
|
|
|
|
module.exports = {
|
|
process() {
|
|
return 'module.exports = {};';
|
|
},
|
|
getCacheKey() {
|
|
// The output is always the same.
|
|
return 'cssTransform';
|
|
},
|
|
};
|