r2pde-ai 0.1.1 → 0.1.2
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/dist/src/cli.js +1 -1
- package/package.json +1 -1
- package/readme.txt +28 -0
package/dist/src/cli.js
CHANGED
|
@@ -133,7 +133,7 @@ if (process.argv.length <= 2) {
|
|
|
133
133
|
// Sem argumentos: exibe versão e autoria
|
|
134
134
|
// Versão e autoria vindos do package.json
|
|
135
135
|
// (hardcoded para evitar import dinâmico em CLI)
|
|
136
|
-
console.log('r2pde-ai v0.1.
|
|
136
|
+
console.log('r2pde-ai v0.1.1');
|
|
137
137
|
console.log('Autor: r2 rodneyrinaldi');
|
|
138
138
|
process.exit(0);
|
|
139
139
|
}
|
package/package.json
CHANGED
package/readme.txt
CHANGED
|
@@ -19,3 +19,31 @@ iniciar um projeto
|
|
|
19
19
|
- rodar o npm init
|
|
20
20
|
- rodar o git init
|
|
21
21
|
- rodar o r2pde-ai init
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
atualizar git
|
|
26
|
+
-------------
|
|
27
|
+
git add .
|
|
28
|
+
git commit -m ""
|
|
29
|
+
git push origin main
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
atualizar npm
|
|
34
|
+
-------------
|
|
35
|
+
npm version patch (aumentar versão no package.json)
|
|
36
|
+
npm run build
|
|
37
|
+
npm login (entrar 2fa)
|
|
38
|
+
npm publish ou npm publish --tag beta
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
testar
|
|
43
|
+
------
|
|
44
|
+
node dist/src/cli.js --help
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|