Skip to content

Commit

Permalink
Release to npm - version:0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
harpreetkhalsagtbit committed May 15, 2019
1 parent 3da031b commit 15b0ac4
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
dist
dist
coverage
5 changes: 2 additions & 3 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
lib
index.ts
jest.config.js
node_modules
test
lib/test
__test__
coverage
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import countryList from './lib/country.json';
import stateList from './lib/state.json';
import cityList from './lib/city.json';

export default {
export = {
getCountryById: function (id: string) {
return _findEntry(countryList, id);
},
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "country-state-city",
"version": "0.1.3",
"version": "0.1.8",
"description": "Library for fetching Country, its States and Cities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 15b0ac4

Please sign in to comment.