@fluxup/install 1.0.0 → 1.2.0
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/README.md +0 -3
- package/bin/cli.js +1 -1
- package/package.json +4 -2
- package/src/env.js +1 -1
package/README.md
CHANGED
|
@@ -136,9 +136,6 @@ O instalador então usa `IMAGE_TAG=X.Y.Z` e `S3_KEY=releases/X.Y.Z/docker-compos
|
|
|
136
136
|
## Autores
|
|
137
137
|
|
|
138
138
|
- [Diovani Motta](https://github.com/diovanibmotta)
|
|
139
|
-
- [João Cristofoloni](https://github.com/IJhonC)
|
|
140
|
-
- [João Puel](https://github.com/joaopuel)
|
|
141
|
-
- [Jonas Magalhães](https://github.com/JonasVMagalhaes)
|
|
142
139
|
|
|
143
140
|
## Contato
|
|
144
141
|
|
package/bin/cli.js
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluxup/install",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "FluxUp on-premises Docker installation CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"fluxup-
|
|
7
|
+
"fluxup-installer": "./bin/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"bin/",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
14
|
"lint": "node --check bin/cli.js src/*.js",
|
|
15
|
+
"build": "npm run lint",
|
|
15
16
|
"semantic-release": "semantic-release"
|
|
16
17
|
},
|
|
17
18
|
"dependencies": {
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
"@semantic-release/git": "^10.0.1",
|
|
27
28
|
"@semantic-release/github": "^10.3.5",
|
|
28
29
|
"@semantic-release/npm": "^12.0.1",
|
|
30
|
+
"conventional-changelog-conventionalcommits": "^9.0.0",
|
|
29
31
|
"semantic-release": "^24.1.0"
|
|
30
32
|
},
|
|
31
33
|
"engines": {
|
package/src/env.js
CHANGED
|
@@ -23,7 +23,7 @@ export function writeEnvFile(dir, answers) {
|
|
|
23
23
|
});
|
|
24
24
|
|
|
25
25
|
const content = [
|
|
26
|
-
'# Generated by fluxup-
|
|
26
|
+
'# Generated by fluxup-installer — DO NOT commit',
|
|
27
27
|
'# GHCR token is not here — fetched from AWS Secrets Manager at runtime',
|
|
28
28
|
'',
|
|
29
29
|
...lines,
|