binhend 2.1.36 → 2.1.37

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/src/web/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "binhend",
3
- "version": "2.1.36",
3
+ "version": "2.1.37",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "Nguyen Duc Binh",
package/src/web/index.js CHANGED
@@ -22,8 +22,8 @@ function WebBuild(source, { output, external } = {}) {
22
22
 
23
23
  if (source === path.resolve(output)) throw new Error(`[BINHEND][WEB] Location of build output & source code should NOT be the same: ${source}`);
24
24
 
25
+ var web = path.resolve(output, DEFAULT_DIR_BUILD_WEB);
25
26
  var module = path.resolve(output, DEFAULT_DIR_BUILD_MODULE);
26
- var web = path.resolve(output, DEFAULT_DIR_BUILD_MODULE);
27
27
  var external = mustString(external) || DEFAULT_DIR_BUILD_EXTERNAL;
28
28
 
29
29
  this.bundle = () => {