docker-react 0.0.3 → 0.0.4-2-github-actions.3

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.
package/.dockerignore ADDED
@@ -0,0 +1,11 @@
1
+ .circleci
2
+ bin
3
+ cli
4
+ dist
5
+ # node_modules
6
+ .gitignore
7
+ .npmignore
8
+ package*.json
9
+ prettier.config.cjs
10
+ sample.joi.schema.js
11
+ tsconfig.json
package/README.md CHANGED
@@ -93,7 +93,7 @@ CLI & base image to deploy React applications with docker containers.
93
93
  ```json
94
94
  {
95
95
  "dev": "npm run init-local && vite",
96
- "init-local": "npx docker-react prep -s ./env.schema.js -e local"
96
+ "init-local": "npx docker-react prep -s ./env.schema.js -e local -d public"
97
97
  }
98
98
  ```
99
99
 
File without changes
package/package.json CHANGED
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "name": "docker-react",
3
- "version": "0.0.3",
4
3
  "description": "Tooling to deploy React applications with docker containers.",
5
4
  "main": "dist/index.js",
6
5
  "type": "module",
@@ -37,5 +36,6 @@
37
36
  },
38
37
  "peerDependencies": {
39
38
  "joi": "^17.5.0"
40
- }
41
- }
39
+ },
40
+ "version": "0.0.4-2-github-actions.3"
41
+ }