@polylith/builder 0.1.14 → 0.1.16

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.
Files changed (2) hide show
  1. package/App.js +2 -2
  2. package/package.json +1 -1
package/App.js CHANGED
@@ -7,7 +7,6 @@ import * as resolve from '@rollup/plugin-node-resolve';
7
7
  import commonjs from '@rollup/plugin-commonjs';
8
8
  import rollupJson from "@rollup/plugin-json"
9
9
  import svgr from '@svgr/rollup'
10
-
11
10
  import html from 'rollup-plugin-html';
12
11
  import livereload from 'rollup-plugin-livereload';
13
12
  import styles from "rollup-plugin-styles";
@@ -567,7 +566,8 @@ export default class App {
567
566
  presets: ['@babel/preset-react'],
568
567
  babelHelpers: 'bundled',
569
568
  }),
570
- svgr(),
569
+ url(),
570
+ svgr({svgo: false}),
571
571
  loadConfigs(this.configs),
572
572
  loader(this.loadables),
573
573
  features(this.featureIndexes),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polylith/builder",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "description": "The polylith builder",
5
5
  "main": "index.js",
6
6
  "type": "module",