@bigbinary/neeto-commons-frontend 4.13.63 → 4.13.64

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.
@@ -49,7 +49,7 @@ const copyFiles = (destination, customCopyPaths) =>
49
49
  ],
50
50
  });
51
51
 
52
- const buildWatchConfig = ({
52
+ const getAppWatchConfig = ({
53
53
  args,
54
54
  customCopyPaths = [],
55
55
  customWatchPaths = [],
@@ -66,13 +66,13 @@ const buildWatchConfig = ({
66
66
  packageJson.name
67
67
  );
68
68
 
69
- const plugins = [
69
+ const appWatchPlugins = [
70
70
  watchPaths(customWatchPaths),
71
71
  copyFiles(appPath, customCopyPaths),
72
72
  emitReadyFile(appPath),
73
73
  ];
74
74
 
75
- return { watchPlugins: plugins, appPath };
75
+ return { appWatchPlugins, appPath };
76
76
  };
77
77
 
78
- module.exports = { buildWatchConfig };
78
+ module.exports = { getAppWatchConfig };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-commons-frontend",
3
- "version": "4.13.63",
3
+ "version": "4.13.64",
4
4
  "description": "A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.",
5
5
  "repository": "git@github.com:bigbinary/neeto-commons-frontend.git",
6
6
  "author": "Amaljith K <amaljith.k@bigbinary.com>",