@leo108/geolite2-db 2.39.0 → 2.40.0

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/.gitlab-ci.yml CHANGED
@@ -13,5 +13,4 @@ npm:
13
13
  only:
14
14
  - tags
15
15
  script:
16
- - echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
17
- - npm publish
16
+ - ./publish.sh
package/City.mmdb CHANGED
Binary file
package/Country.mmdb CHANGED
Binary file
package/build.sh CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/bin/bash
2
+ set -e
2
3
 
3
4
  # https://gist.github.com/siddharthkrish/32072e6f97d7743b1a7c47d76d2cb06c
4
5
  increase_version () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leo108/geolite2-db",
3
- "version": "v2.39.0",
3
+ "version": "v2.40.0",
4
4
  "description": "This repository aims to provide an easy solution to require GeoIP2 / GeoLite2 databases inside your project using npm/yarn.",
5
5
  "repository": {
6
6
  "type": "git",
package/publish.sh ADDED
@@ -0,0 +1,4 @@
1
+ #!/bin/bash
2
+ set -e
3
+ echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
4
+ npm publish