@ambita/design-system 1.0.50-321.0 → 1.0.50
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/CHANGELOG.md +6 -0
- package/README.md +13 -1
- package/package.json +1 -1
package/CHANGELOG.md
ADDED
package/README.md
CHANGED
|
@@ -25,6 +25,18 @@ npm run test:unit
|
|
|
25
25
|
npm run lint
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
+
### Merging and deploying
|
|
29
|
+
https://www.npmjs.com/package/@ambita/design-system?activeTab=versions
|
|
30
|
+
When you create a pull-request from your branch to dev, and its merged, it get deployed with a tag @dev.
|
|
31
|
+
```
|
|
32
|
+
npm i @ambita/design-system@dev
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
When you are merging dev into master, it creates a new tag @latest.
|
|
36
|
+
```
|
|
37
|
+
npm i @ambita/design-system@latest
|
|
38
|
+
```
|
|
39
|
+
|
|
28
40
|
### Customize configuration
|
|
29
41
|
See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
30
42
|
|
|
@@ -48,4 +60,4 @@ not contained in _our_ project to the asset folder. After running the script,
|
|
|
48
60
|
the fetched icons will show up as untracked files when `git status` is run.
|
|
49
61
|
These files should be committed, and a new version should be published.
|
|
50
62
|
In this new version, all available Phosphor icons will be exported by the
|
|
51
|
-
design system.
|
|
63
|
+
design system.
|