core-outline 1.1.20 → 1.1.21

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.
Files changed (2) hide show
  1. package/README.md +7 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,13 +8,13 @@ Install the package using npm:
8
8
 
9
9
  ```sh
10
10
  npm install core-outline
11
-
11
+ ```
12
12
 
13
13
  or using yarn:
14
14
 
15
15
  ```sh
16
- yarn install core-outline
17
-
16
+ yarn add core-outline
17
+ ```
18
18
 
19
19
  ```sh
20
20
  import React from 'react';
@@ -31,20 +31,20 @@ function App() {
31
31
  }
32
32
 
33
33
  export default App;
34
-
34
+ ```
35
35
 
36
36
  To flag items clicked or purchased:
37
37
 
38
38
  ```sh
39
39
  import { flag_item_clicked, flag_item_purchased } from 'core-outline;
40
-
40
+ ```
41
41
  To flag items clicked:
42
42
 
43
43
  ```sh
44
44
  flag_item_clicked('ITEM_ID');
45
-
45
+ ```
46
46
  To flag items purchased:
47
47
 
48
48
  ```sh
49
49
  flag_item_purchased('ITEM_ID');
50
-
50
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "core-outline",
3
- "version": "1.1.20",
3
+ "version": "1.1.21",
4
4
  "description": "A React component for Core&Outline",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",