country-flag-cli 0.0.16 → 0.0.20

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "country-flag-cli",
3
- "version": "0.0.16",
3
+ "version": "0.0.20",
4
4
  "description": "A simple cli app to return flag emojis given 2 digit country code",
5
5
  "author": "Evan Mattiza",
6
6
  "keywords": [
@@ -19,12 +19,12 @@
19
19
  "scripts": {
20
20
  "dev": "esno ./src/cli.ts",
21
21
  "clean": "rimraf ./dist/ ./exec/",
22
- "es-build": "esbuild --platform=node --bundle src/cli.ts --outdir=dist --minify --sourcemap=both",
22
+ "es-build": "esbuild --platform=node --bundle src/cli.ts --outdir=dist --minify --sourcemap",
23
23
  "build": "npm run clean && npm run test && npm run es-build",
24
- "mac-x64-pkg:build": "pkg -t node14-mac-x64 dist/cli.js -o ./exec/country-flag-cli_mac_x64",
25
- "win-x64-pkg:build": "pkg -t node14-win-x64 dist/cli.js -o ./exec/country-flag-cli_win_x64",
26
- "linux-x64-pkg:build": "pkg -t node14-linux-x64 dist/cli.js -o ./exec/country-flag-cli_linux_x64",
27
- "linux-arm64-pkg:build": "pkg -t node14-linux-arm64 dist/cli.js -o ./exec/country-flag-cli_linux_arm64",
24
+ "mac-x64-pkg:build": "pkg --options enable-source-maps -t node14-mac-x64 dist/cli.js -o ./exec/country-flag-cli_mac_x64",
25
+ "win-x64-pkg:build": "pkg --options enable-source-maps -t node14-win-x64 dist/cli.js -o ./exec/country-flag-cli_win_x64",
26
+ "linux-x64-pkg:build": "pkg --options enable-source-maps -t node14-linux-x64 dist/cli.js -o ./exec/country-flag-cli_linux_x64",
27
+ "linux-arm64-pkg:build": "pkg --options enable-source-maps -t node14-linux-arm64 dist/cli.js -o ./exec/country-flag-cli_linux_arm64",
28
28
  "test": "jest",
29
29
  "bundle": "npm run build"
30
30
  },
@@ -43,6 +43,7 @@
43
43
  "@sentry/integrations": "^6.16.1",
44
44
  "@sentry/node": "^6.16.1",
45
45
  "@sentry/tracing": "^6.16.1",
46
- "commander": "^2.20.0"
46
+ "commander": "^2.20.0",
47
+ "source-map-support": "^0.5.21"
47
48
  }
48
49
  }