remove existing radar and decouple everything

This commit is contained in:
Bastian Ike
2021-01-08 13:29:24 +01:00
committed by Bastian
parent 2134a6d62d
commit dd8054d1be
238 changed files with 2140 additions and 2742 deletions

View File

@@ -0,0 +1,14 @@
'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';
},
};