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 +11 -0
- package/README.md +1 -1
- package/bin/docker-react.js +0 -0
- package/package.json +3 -3
package/.dockerignore
ADDED
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
|
|
package/bin/docker-react.js
CHANGED
|
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
|
+
}
|