@sunrise-upc/mobile-prod-card 9.2.0 → 9.2.1
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/README.md +41 -41
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
# README #
|
|
2
|
-
# Reusable Func Component
|
|
3
|
-
|
|
4
|
-
Starter code base to create a reusable functional react component for the sunrise b2c digital development team.
|
|
5
|
-
|
|
6
|
-
### What is this repository for? ###
|
|
7
|
-
|
|
8
|
-
* Summary
|
|
9
|
-
* Typescript & Rollup are used to create and bundle the reusable components.
|
|
10
|
-
* Version
|
|
11
|
-
* v1.0.0
|
|
12
|
-
|
|
13
|
-
### How do I get set up? ###
|
|
14
|
-
|
|
15
|
-
* Summary of set up for new
|
|
16
|
-
* Clone the code from this repo and remove this project references from files like package.json and rollup.config.mjs
|
|
17
|
-
* __package.json__
|
|
18
|
-
* Please change the name and dependency details based on the your requirment
|
|
19
|
-
* add the peerDependency based on the your requirment
|
|
20
|
-
* __rollup.config.mjs__
|
|
21
|
-
* change the name in output configuration
|
|
22
|
-
```
|
|
23
|
-
output:[
|
|
24
|
-
{
|
|
25
|
-
file:'dist/cjs/index.js',
|
|
26
|
-
format:'cjs',
|
|
27
|
-
sourcemap:true,
|
|
28
|
-
name:'sunrise-fun-comp-lib'
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
file:"dist/esm/index.js",
|
|
32
|
-
format:'esm',
|
|
33
|
-
sourcemap:true
|
|
34
|
-
}
|
|
35
|
-
]
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
### Upload into private NPM package ###
|
|
40
|
-
|
|
41
|
-
* before upload the package into NPM repo. Please connect with Leads
|
|
1
|
+
# README #
|
|
2
|
+
# Reusable Func Component
|
|
3
|
+
|
|
4
|
+
Starter code base to create a reusable functional react component for the sunrise b2c digital development team.
|
|
5
|
+
|
|
6
|
+
### What is this repository for? ###
|
|
7
|
+
|
|
8
|
+
* Summary
|
|
9
|
+
* Typescript & Rollup are used to create and bundle the reusable components.
|
|
10
|
+
* Version
|
|
11
|
+
* v1.0.0
|
|
12
|
+
|
|
13
|
+
### How do I get set up? ###
|
|
14
|
+
|
|
15
|
+
* Summary of set up for new
|
|
16
|
+
* Clone the code from this repo and remove this project references from files like package.json and rollup.config.mjs
|
|
17
|
+
* __package.json__
|
|
18
|
+
* Please change the name and dependency details based on the your requirment
|
|
19
|
+
* add the peerDependency based on the your requirment
|
|
20
|
+
* __rollup.config.mjs__
|
|
21
|
+
* change the name in output configuration
|
|
22
|
+
```
|
|
23
|
+
output:[
|
|
24
|
+
{
|
|
25
|
+
file:'dist/cjs/index.js',
|
|
26
|
+
format:'cjs',
|
|
27
|
+
sourcemap:true,
|
|
28
|
+
name:'sunrise-fun-comp-lib'
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
file:"dist/esm/index.js",
|
|
32
|
+
format:'esm',
|
|
33
|
+
sourcemap:true
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Upload into private NPM package ###
|
|
40
|
+
|
|
41
|
+
* before upload the package into NPM repo. Please connect with Leads
|
|
42
42
|
|