datastake-daf 0.6.701 → 0.6.703
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/rollup.config.js +6 -1
package/package.json
CHANGED
package/rollup.config.js
CHANGED
|
@@ -118,7 +118,7 @@ export default [
|
|
|
118
118
|
requireReturnsDefault: "auto",
|
|
119
119
|
}),
|
|
120
120
|
],
|
|
121
|
-
},
|
|
121
|
+
},
|
|
122
122
|
{
|
|
123
123
|
input: "src/pages.js",
|
|
124
124
|
output: [
|
|
@@ -137,6 +137,11 @@ export default [
|
|
|
137
137
|
include: /node_modules/,
|
|
138
138
|
requireReturnsDefault: "auto",
|
|
139
139
|
}),
|
|
140
|
+
postcss({
|
|
141
|
+
extract: true,
|
|
142
|
+
minimize: true,
|
|
143
|
+
modules: true,
|
|
144
|
+
}),
|
|
140
145
|
],
|
|
141
146
|
},
|
|
142
147
|
{
|