@1024pix/pix-ui 38.1.0 → 38.2.0

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.
@@ -7,62 +7,52 @@ workflows:
7
7
  version: 2
8
8
  build-and-test:
9
9
  jobs:
10
- - install:
11
- filters:
12
- branches:
13
- ignore:
14
- - gh-pages
15
10
  - lint-and-test:
11
+ matrix:
12
+ parameters:
13
+ node-version:
14
+ - "16.20.1"
15
+ - "18.17.0"
16
16
  filters:
17
17
  branches:
18
18
  ignore:
19
19
  - gh-pages
20
- requires:
21
- - install
22
20
  - try-scenarios:
23
21
  matrix:
24
22
  parameters:
25
23
  try-scenario:
26
24
  - embroider-safe
27
25
  - embroider-optimized
26
+ node-version:
27
+ - "16.20.1"
28
+ - "18.17.0"
28
29
  filters:
29
30
  branches:
30
31
  ignore:
31
32
  - gh-pages
32
- requires:
33
- - install
34
33
  - chromatic-deployment:
34
+ matrix:
35
+ parameters:
36
+ node-version:
37
+ - "16.20.1"
38
+ - "18.17.0"
35
39
  filters:
36
40
  branches:
37
41
  ignore:
38
42
  - gh-pages
39
- requires:
40
- - install
41
43
 
42
44
  jobs:
43
- install:
44
- docker:
45
- - image: cimg/node:16.20.0-browsers
46
- resource_class: medium+
47
- working_directory: ~/pix-ui
48
- steps:
49
- - checkout
50
- - run: npm ci
51
- - persist_to_workspace:
52
- root: ~/pix-ui
53
- paths:
54
- - .
55
-
56
45
  lint-and-test:
46
+ parameters:
47
+ node-version:
48
+ type: string
57
49
  docker:
58
- - image: cimg/node:16.20.0-browsers
50
+ - image: cimg/node:<< parameters.node-version >>-browsers
59
51
  resource_class: medium+
60
- working_directory: ~/pix-ui
61
52
  steps:
62
- - attach_workspace:
63
- at: ~/pix-ui
64
53
  - browser-tools/install-chrome
65
- - browser-tools/install-chromedriver
54
+ - checkout
55
+ - run: npm ci
66
56
  - run: npm run lint:js
67
57
  - run: npm run lint:hbs
68
58
  - run: npm run lint:scss
@@ -72,22 +62,24 @@ jobs:
72
62
  parameters:
73
63
  try-scenario:
74
64
  type: string
65
+ node-version:
66
+ type: string
75
67
  docker:
76
- - image: cimg/node:16.20.0-browsers
68
+ - image: cimg/node:<< parameters.node-version >>-browsers
77
69
  resource_class: medium+
78
- working_directory: ~/pix-ui
79
70
  steps:
80
- - attach_workspace:
81
- at: ~/pix-ui
82
71
  - browser-tools/install-chrome
83
- - browser-tools/install-chromedriver
72
+ - checkout
73
+ - run: npm ci
84
74
  - run: npx ember try:one << parameters.try-scenario >>
85
75
 
86
76
  chromatic-deployment:
77
+ parameters:
78
+ node-version:
79
+ type: string
87
80
  docker:
88
- - image: cimg/node:16.20.0-browsers
89
- working_directory: ~/pix-ui
81
+ - image: cimg/node:<< parameters.node-version >>-browsers
90
82
  steps:
91
- - attach_workspace:
92
- at: ~/pix-ui
83
+ - checkout
84
+ - run: npm ci
93
85
  - run: npm run chromatic -- --auto-accept-changes
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- 16
1
+ 18.17.0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Pix-UI Changelog
2
2
 
3
+ ## v38.2.0 (25/07/2023)
4
+
5
+
6
+ ### :building_construction: Tech
7
+ - [#383](https://github.com/1024pix/pix-ui/pull/383) [TECH] Ajouter la compatibilité avec node18.
8
+
3
9
  ## v38.1.0 (25/07/2023)
4
10
 
5
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1024pix/pix-ui",
3
- "version": "38.1.0",
3
+ "version": "38.2.0",
4
4
  "description": "Pix-UI is the implementation of Pix design principles and guidelines for its products.",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -8,7 +8,8 @@
8
8
  "license": "MIT",
9
9
  "author": "GIP Pix",
10
10
  "engines": {
11
- "node": "^16.17"
11
+ "node": "16 || 18",
12
+ "npm": "8 || 9"
12
13
  },
13
14
  "ember": {
14
15
  "edition": "octane"