country-flag-cli 0.0.18 → 0.0.19
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/cli.js +1 -1
- package/package.json +6 -6
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "country-flag-cli",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.19",
|
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
|
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
|
},
|