generator-reshow 0.16.0 → 0.16.1

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.
@@ -0,0 +1,8 @@
1
+ node_modules
2
+ npm-debug.log
3
+ coverage*
4
+ .tern-port
5
+ v8.log
6
+ build
7
+ .*.sw?
8
+ webpack.pid
@@ -1,6 +1,12 @@
1
- # `APP`
1
+ # `<%= mainName %>`
2
2
 
3
- > TODO: description
3
+ > <%= description %>
4
+
5
+ ## Repository
6
+ * `GIT`
7
+ * <%= repositoryHomepage %>
8
+ * `NPM`
9
+ * https://www.npmjs.com/package/<%= mainName %>
4
10
 
5
11
  ## Usage
6
12
 
@@ -28,7 +28,7 @@ const usePage = (props) => {
28
28
  });
29
29
  });
30
30
  };
31
- });
31
+ }, []);
32
32
  };
33
33
 
34
34
  export default usePage;
@@ -3,9 +3,9 @@
3
3
  > <%= description %>
4
4
 
5
5
  ## Repositories
6
- * GIT
7
- * https://github.com/react-atomic/react-atomic-organism/tree/main/packages/lib/<%= mainName %>
8
- * NPM
6
+ * `GIT`
7
+ * <%= repositoryHomepage %>
8
+ * `NPM`
9
9
  * https://www.npmjs.com/package/<%= mainName %>
10
10
 
11
11
  ## Usage
@@ -4,7 +4,7 @@
4
4
 
5
5
  ## Repository
6
6
  * `GIT`
7
- * <% repositoryHomepage %>
7
+ * <%= repositoryHomepage %>
8
8
  * `NPM`
9
9
  * https://www.npmjs.com/package/<%= mainName %>
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generator-reshow",
3
- "version": "0.16.0",
3
+ "version": "0.16.1",
4
4
  "description": "Yeoman generator for reshow. (app, generator, ...etc)",
5
5
  "author": "Hill <hill@kimo.com>",
6
6
  "repository": {
@@ -33,6 +33,5 @@
33
33
  },
34
34
  "bugs": {
35
35
  "url": "https://github.com/react-atomic/reshow/issues"
36
- },
37
- "gitHead": "be1806f6f2d188920e2c36ff2c150e584ef7d7fc"
36
+ }
38
37
  }
@@ -1,10 +0,0 @@
1
- import { expect } from "chai";
2
-
3
- import YourFunc from "../index";
4
-
5
- describe("Test <%= mainName %>", () => {
6
- it("basic testt", () => {
7
- /*your test code*/
8
- YourFunc();
9
- });
10
- });
@@ -1,3 +0,0 @@
1
- #!/bin/sh
2
-
3
- npm run build
@@ -1,3 +0,0 @@
1
- const YourFunc = (props) => {};
2
-
3
- export default YourFunc;