@scoober/foodtracker 0.0.1-security → 1.82.2
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.
Potentially problematic release.
This version of @scoober/foodtracker might be problematic. Click here for more details.
- package/README.md +30 -3
- package/build/index.js +821 -0
- package/package.json +25 -3
- package/scripts/build.js +99 -0
package/README.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @scoober/foodtracker
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Scoober food tracker app.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- ES6 syntax, managed with Prettier + Eslint and Stylelint
|
|
8
|
+
- Unit testing via Jest
|
|
9
|
+
- React v16.8
|
|
10
|
+
- ESM
|
|
11
|
+
|
|
12
|
+
## Install
|
|
13
|
+
|
|
14
|
+
```sh
|
|
15
|
+
yarn add @scoober/foodtracker
|
|
16
|
+
// or
|
|
17
|
+
npm i @scoober/foodtracker
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
### Usage
|
|
21
|
+
|
|
22
|
+
```js
|
|
23
|
+
import { FoodTracker } from '@scoober/foodtracker';
|
|
24
|
+
|
|
25
|
+
const MyApp = () => {
|
|
26
|
+
return (
|
|
27
|
+
<div>
|
|
28
|
+
<FoodTracker key={YOUR_KEY} storeId={YOUR_STORE_ID} />
|
|
29
|
+
</div>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
```
|