Prototype of web-based preview for subassemblies

This commit is contained in:
IDONTSUDO 2023-06-18 15:27:23 +00:00 committed by Igor Brylyov
parent 6560a4359d
commit 1fb7077774
55 changed files with 33076 additions and 0 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';
},
};