@1024pix/pix-ui 15.0.1 → 15.0.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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
name: Deploy Pix UI Storybook
|
|
2
2
|
|
|
3
|
-
on:
|
|
4
|
-
workflow_dispatch:
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
5
|
push:
|
|
6
6
|
tags:
|
|
7
7
|
- '*'
|
|
@@ -10,12 +10,13 @@ jobs:
|
|
|
10
10
|
deploy:
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
|
-
- uses: actions/checkout@
|
|
14
|
-
- uses: actions/setup-node@
|
|
13
|
+
- uses: actions/checkout@v3
|
|
14
|
+
- uses: actions/setup-node@v3
|
|
15
15
|
with:
|
|
16
|
-
node-version: 14
|
|
16
|
+
node-version: 16.14.0
|
|
17
|
+
- run: npm i -g npm@8.13.2
|
|
17
18
|
- run: npm ci
|
|
18
19
|
- name: Deploy storybook to Github Pages
|
|
19
20
|
run: npm run deploy-storybook -- --ci
|
|
20
21
|
env:
|
|
21
|
-
GH_TOKEN: 1024pix:${{ secrets.GITHUB_TOKEN }}
|
|
22
|
+
GH_TOKEN: 1024pix:${{ secrets.GITHUB_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Pix-UI Changelog
|
|
2
2
|
|
|
3
|
+
## v15.0.2 (11/07/2022)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### :building_construction: Tech
|
|
7
|
+
- [#237](https://github.com/1024pix/pix-ui/pull/237) [TECH] Changer les pré-requis engine du package.json (PIX-5319)
|
|
8
|
+
|
|
9
|
+
### :bug: Correction
|
|
10
|
+
- [#236](https://github.com/1024pix/pix-ui/pull/236) [BUGFIX] Correction du déploiement de Storybook
|
|
11
|
+
|
|
3
12
|
## v15.0.1 (08/07/2022)
|
|
4
13
|
|
|
5
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@1024pix/pix-ui",
|
|
3
|
-
"version": "15.0.
|
|
3
|
+
"version": "15.0.2",
|
|
4
4
|
"description": "Pix-UI is the implementation of Pix design principles and guidelines for its products.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"author": "GIP Pix",
|
|
10
10
|
"engines": {
|
|
11
11
|
"node": "16.14.0",
|
|
12
|
-
"npm": "8.13.2"
|
|
12
|
+
"npm": ">=8.3.1 <=8.13.2"
|
|
13
13
|
},
|
|
14
14
|
"ember": {
|
|
15
15
|
"edition": "octane"
|