@polylith/builder 0.0.15 → 0.0.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.
- package/App.js +2 -2
- package/package.json +2 -1
package/App.js
CHANGED
|
@@ -104,6 +104,8 @@ export class App {
|
|
|
104
104
|
input : {
|
|
105
105
|
input: input,
|
|
106
106
|
plugins: [
|
|
107
|
+
resolve.nodeResolve(),
|
|
108
|
+
commonjs(),
|
|
107
109
|
babel({
|
|
108
110
|
babelrc: false,
|
|
109
111
|
exclude: 'node_modules/**',
|
|
@@ -121,9 +123,7 @@ export class App {
|
|
|
121
123
|
],
|
|
122
124
|
],
|
|
123
125
|
}),
|
|
124
|
-
resolve.nodeResolve(),
|
|
125
126
|
jsx( {factory: 'React.createElement'} ),
|
|
126
|
-
commonjs(),
|
|
127
127
|
loadables(this.loadables),
|
|
128
128
|
html({
|
|
129
129
|
include: path.join(this.basePath, "**/*.html"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polylith/builder",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"description": "The polylith builder",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"author": "Glenn Anderson",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
+
"@babel/preset-env": "^7.16.11",
|
|
13
14
|
"@rollup/plugin-commonjs": "^21.0.0",
|
|
14
15
|
"@rollup/plugin-node-resolve": "^13.0.5",
|
|
15
16
|
"escape-string-regexp": "^5.0.0",
|