generator-reshow 0.17.46 → 0.17.48

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.
@@ -29,7 +29,7 @@ describe("!! docker !!", () => {
29
29
  });
30
30
 
31
31
  it("should have folder", () => {
32
- // assert.file(["src", "ui"]);
32
+ assert.file(["bin", ".circleci"]);
33
33
  });
34
34
 
35
35
  it("should have file", () => {
@@ -5,6 +5,13 @@
5
5
 
6
6
  > <%= description %>
7
7
 
8
+ ## `GIT`
9
+ * <%= repositoryUrl %>
10
+
11
+ ## `Docker hub`
12
+ * Docker Image: <%= dockerOrgName %>/<%= dockerImageName %>
13
+ * https://hub.docker.com/r/<%= dockerOrgName %>/<%= dockerImageName %>
14
+
8
15
  ## Usage
9
16
 
10
17
  ```
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.17.46",
2
+ "version": "0.17.48",
3
3
  "name": "generator-reshow",
4
4
  "repository": {
5
5
  "type": "git",
@@ -20,7 +20,7 @@
20
20
  "yo-unit": "*"
21
21
  },
22
22
  "scripts": {
23
- "mochaFor": "mocha --timeout 3000",
23
+ "mochaFor": "mocha --timeout 2500",
24
24
  "mocha": "npm run mochaFor -- 'generators/**/__tests__/*.js'",
25
25
  "test": "npm run mocha",
26
26
  "prepublishOnly": "npm run test"
@@ -32,6 +32,8 @@
32
32
  "node": ">=12"
33
33
  },
34
34
  "files": [
35
- "generators"
35
+ "generators",
36
+ "package.json",
37
+ "README.md"
36
38
  ]
37
39
  }