From baa8f2cb2448190c3d78fe152fadcb8390156914 Mon Sep 17 00:00:00 2001 From: Rastislav Date: Thu, 21 Sep 2023 20:59:41 +0200 Subject: [PATCH] Initial 2 --- .github/workflows/publish.yml | 2 -- .gitignore | 32 ++++++++++++++++++++++++++++++++ package.json | 6 +++++- 3 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 .gitignore diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f6a3886..58f4255 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,8 +13,6 @@ jobs: with: node-version: '14.x' registry-url: 'https://registry.npmjs.org' - - name: Install & Build 🔧 - run: npm i && npm run build - name: Publish package on NPM 📦 run: npm publish --access public env: diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..77ad52c --- /dev/null +++ b/.gitignore @@ -0,0 +1,32 @@ +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### macOS Patch ### +# iCloud generated files +*.icloud diff --git a/package.json b/package.json index 0c84c95..3f2a93c 100644 --- a/package.json +++ b/package.json @@ -29,5 +29,9 @@ ], "bugs": { "url": "https://github.com/cryptohub-digital/countries-divisions/issues" - } + }, + "files": [ + "index.js", + "countries-divisions.json" + ] }