Skip to content

Commit b29d78c

Browse files
dannyrbJamesAPetts
authored andcommitted
chore: support monorepo PWA linking w/ yarn link (OHIF#72)
1 parent 3f0eaec commit b29d78c

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"license": "MIT",
77
"repository": "OHIF/react-vtkjs-viewport",
88
"main": "dist/index.umd.js",
9+
"module": "src/index.js",
910
"engines": {
1011
"node": ">=8",
1112
"npm": ">=5"

postcss.config.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module.exports = function(ctx) {
2+
ctx = ctx || {};
3+
ctx.env = ctx.env || 'development';
4+
5+
return {
6+
map: ctx.env === 'development' ? ctx.map : false,
7+
plugins: {
8+
'postcss-import': {},
9+
'postcss-preset-env': {},
10+
cssnano: ctx.env === 'production' ? {} : false,
11+
},
12+
};
13+
};

0 commit comments

Comments
 (0)