@zohodesk/react-cli 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -44,6 +44,12 @@ Now to run app
44
44
 
45
45
  # Change Logs
46
46
 
47
+ # 1.1.2
48
+
49
+ **Issue Fix**
50
+
51
+ - ReactLiveConverter filepath changed to 'reactLiveConverter.js' in docLoader file
52
+
47
53
  # 1.1.1
48
54
 
49
55
  **Issue Fix**
package/docs/ReactLive.md CHANGED
@@ -8,3 +8,7 @@
8
8
 
9
9
  # v1.1.0 update:
10
10
  * ReactLive feature implemented.
11
+
12
+ # v1.1.2 update:
13
+
14
+ * ReactLiveConverter filepath changed to 'reactLiveConverter.js' in docLoader file
@@ -6,7 +6,7 @@ var _getOptions = _interopRequireDefault(require("../utils/getOptions.js"));
6
6
 
7
7
  var _path = _interopRequireDefault(require("path"));
8
8
 
9
- var _ReactLiveConvertor = require("./ReactLiveConvertor");
9
+ var _reactLiveConvertor = require("./reactLiveConvertor");
10
10
 
11
11
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12
12
 
@@ -24,7 +24,7 @@ module.exports = function (source) {
24
24
 
25
25
  const src = _fs.default.readFileSync(originalFilePath).toString();
26
26
 
27
- options.docs.enableReactLive && (source = (0, _ReactLiveConvertor.reactLiveConvertor)(source, originalFilePath)); //to Enable the ReactLive Converter
27
+ options.docs.enableReactLive && (source = (0, _reactLiveConvertor.reactLiveConvertor)(source, originalFilePath)); //to Enable the ReactLive Converter
28
28
 
29
29
  return `${source};${name}.source=${JSON.stringify(src)};${name}.filePath=${JSON.stringify(filePath)}`;
30
30
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/react-cli",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "A CLI tool for build modern web application and libraries",
5
5
  "scripts": {
6
6
  "init": "node ./lib/utils/init.js",