@polylith/builder 0.0.40 → 0.0.41

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/package.json +1 -1
  2. package/plugin-config.js +1 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polylith/builder",
3
- "version": "0.0.40",
3
+ "version": "0.0.41",
4
4
  "description": "The polylith builder",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/plugin-config.js CHANGED
@@ -1,6 +1,3 @@
1
- import config from '@polylith/config-store';
2
-
3
-
4
1
  function makeSource(configs) {
5
2
 
6
3
  var configBody = ''
@@ -15,11 +12,10 @@ ${JSON.stringify(config, null, ' ')})
15
12
 
16
13
  var source =
17
14
  `import config from '@polylith/config-store';
18
- export var config;
15
+ export default config;
19
16
 
20
17
  ${configBody}
21
18
  `
22
- console.log(source);
23
19
  return source;
24
20
  }
25
21