web-architect-cli 1.0.6 → 1.0.7

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/bin/index.js CHANGED
@@ -4,9 +4,9 @@ if (process.platform === "win32") {
4
4
  try {
5
5
  require("child_process").execSync("chcp 65001", { stdio: 'ignore' });
6
6
  } catch (e) {
7
+
7
8
  }
8
9
  }
9
-
10
10
  const fs = require('fs');
11
11
  const path = require('path');
12
12
  const { execSync } = require('child_process');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-architect-cli",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -10,7 +10,7 @@
10
10
  "archiver": "^7.0.0"
11
11
  },
12
12
  "scripts": {
13
- "postinstall": "node -e \"if (process.platform === 'win32') require('child_process').execSync('setup_windows.bat', { stdio: 'inherit' })\""
13
+ "test": "echo \"Error: no test specified\" && exit 1"
14
14
  },
15
15
  "repository": {
16
16
  "type": "git",
@@ -1,14 +0,0 @@
1
- @echo off
2
- ECHO.
3
- ECHO ==================================================
4
- ECHO CONFIGURANDO AMBIENTE WEB ARCHITECT (WINDOWS)
5
- ECHO ==================================================
6
- ECHO.
7
-
8
- REM 1. Configura a pagina de codigo para UTF-8 (Corrige emojis)
9
- chcp 65001 >nul
10
-
11
- REM 2. Mensagem de sucesso
12
- ECHO [OK] Configuracao de codificacao aplicada.
13
- ECHO [OK] O comando 'web-arch' esta pronto para uso.
14
- ECHO.