wirejs-scripts 2.0.4 → 2.0.5

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.
@@ -223,6 +223,20 @@ module.exports = (env, argv) => {
223
223
  noErrorOnMissing: true,
224
224
  priority: 3,
225
225
  },
226
+ {
227
+ from: './src/routes/**/*.xml',
228
+ to: distPath({ subpathIn: 'src/routes' }),
229
+ transform: SSG,
230
+ noErrorOnMissing: true,
231
+ priority: 3,
232
+ },
233
+ {
234
+ from: './src/routes/**/*.rss',
235
+ to: distPath({ subpathIn: 'src/routes' }),
236
+ transform: SSG,
237
+ noErrorOnMissing: true,
238
+ priority: 3,
239
+ },
226
240
  {
227
241
  from: './src/routes/**/*.css',
228
242
  to: distPath({ subpathIn: 'src/routes' }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wirejs-scripts",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "Basic build and start commands for wirejs apps",
5
5
  "bin": {
6
6
  "wirejs-scripts": "./bin.js"