We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f0eaec commit b29d78cCopy full SHA for b29d78c
package.json
@@ -6,6 +6,7 @@
6
"license": "MIT",
7
"repository": "OHIF/react-vtkjs-viewport",
8
"main": "dist/index.umd.js",
9
+ "module": "src/index.js",
10
"engines": {
11
"node": ">=8",
12
"npm": ">=5"
postcss.config.js
@@ -0,0 +1,13 @@
1
+module.exports = function(ctx) {
2
+ ctx = ctx || {};
3
+ ctx.env = ctx.env || 'development';
4
+
5
+ return {
+ map: ctx.env === 'development' ? ctx.map : false,
+ plugins: {
+ 'postcss-import': {},
+ 'postcss-preset-env': {},
+ cssnano: ctx.env === 'production' ? {} : false,
+ },
+ };
13
+};
0 commit comments