react-native-bundle-discovery 1.1.0-rc.15 → 1.2.0

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/lib/build.js +2 -0
  2. package/package.json +1 -1
package/lib/build.js CHANGED
@@ -100,11 +100,13 @@ function buildHtmlPage(filePath, output, clean, singleFile, verbose) {
100
100
  configFile: configFile,
101
101
  };
102
102
  build(_options, _config, configFile).then((result) => {
103
+ console.log(`========================================`);
103
104
  console.log(
104
105
  `✅ HTML page built successfully at: ${chalk.green(
105
106
  path.resolve(output, "index.html").replace(process.cwd() + "/", ""),
106
107
  )}`,
107
108
  );
109
+ console.log(`========================================`);
108
110
  });
109
111
  }
110
112
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-bundle-discovery",
3
- "version": "1.1.0-rc.15",
3
+ "version": "1.2.0",
4
4
  "main": "index.js",
5
5
  "bin": "lib/bin.js",
6
6
  "repository": "git@github.com:retyui/react-native-bundle-discovery.git",