File tree Expand file tree Collapse file tree 2 files changed +29
-3
lines changed Expand file tree Collapse file tree 2 files changed +29
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to the "haiti localities" extension will be documented in th
4
4
5
5
Check [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file.
6
6
7
+ ## 1.0.4 - 26th July, 2020
8
+
9
+ ### Enhancement
10
+
11
+ - Edited readme file
12
+
7
13
## 1.0.0 - 26th July, 2020
8
14
9
15
### Initial version
Original file line number Diff line number Diff line change @@ -29,18 +29,38 @@ Via [npm](https://www.npmjs.com/):
29
29
npm install @snippetify/haiti-localities
30
30
```
31
31
32
- In a browser:
32
+ Via [ yarn] ( https://yarnpkg.com/ ) :
33
+
34
+ ``` bash
35
+ yarn add @snippetify/haiti-localities
36
+ ```
37
+
38
+ ** In a browser via a script tag:**
33
39
34
40
``` html
35
- <script src =" node_modules/@snippetify/haiti-localities/dist/ haiti-localities.js" ></script >
41
+ <script src =" haiti-localities.js" ></script >
36
42
```
37
43
38
- In [ Node.js ] ( https://nodejs.org/ ) :
44
+ ** CommonJS module require: **
39
45
40
46
``` js
41
47
const haitiLocalities = require (" @snippetify/haiti-localities" )
42
48
```
43
49
50
+ ** ES2015 module import:**
51
+
52
+ ``` js
53
+ import haitiLocalities from " @snippetify/haiti-localities"
54
+ ```
55
+
56
+ ** AMD module require:**
57
+
58
+ ``` js
59
+ require ([' haitiLocalities' ], function (haitiLocalities ) {
60
+ // ...
61
+ });
62
+ ```
63
+
44
64
## API
45
65
46
66
### ` haitiLocalities.getCounties() `
You can’t perform that action at this time.
0 commit comments