Skip to content

Commit 70f8254

Browse files
committed
chore(ci): bump node version
1 parent 52c3e75 commit 70f8254

File tree

12 files changed

+4
-18
lines changed

12 files changed

+4
-18
lines changed

.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- checkout
1212
- node/install:
1313
install-yarn: true
14-
node-version: '16.13'
14+
node-version: '20'
1515
- run:
1616
name: install-deps
1717
command: yarn
@@ -40,7 +40,7 @@ jobs:
4040
at: ~/react-forms
4141
- node/install:
4242
install-yarn: true
43-
node-version: '16.13'
43+
node-version: '20'
4444
- run:
4545
name: Release new version
4646
command: |
@@ -55,7 +55,7 @@ jobs:
5555
at: ~/react-forms
5656
- node/install:
5757
install-yarn: true
58-
node-version: '16.13'
58+
node-version: '20'
5959
- run:
6060
name: Predeploy demo
6161
command: |

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"<rootDir>/packages/**/src/**/*.ts",
4343
"!<rootDir>/packages/**/src/**/*.d.ts",
4444
"!<rootDir>/packages/react-renderer-demo/**/*.js",
45+
"!<rootDir>/packages/suir-component-mapper/**/*.js",
4546
"!<rootDir>/packages/**/dist",
4647
"!<rootDir>/templates/**/*.js",
4748
"!<rootDir>/packages/**/src/**/index.js",

packages/ant-component-mapper/src/date-picker/date-picker.js

-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,4 @@ const DatePicker = ({ placeholder = 'Select date', ...props }) => {
3636
);
3737
};
3838

39-
4039
export default DatePicker;

packages/blueprint-component-mapper/src/slider/slider.js

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import propsCatcher from '../props-catcher/props-catcher';
77

88
const Slider = ({ input, step, ...props }) => <BSlider stepSize={step} {...propsCatcher(props)} {...input} value={input.value || 0} />;
99

10-
1110
const WrapperSlider = (props) => <FormGroupWrapper {...props} Component={Slider} />;
1211

1312
export default WrapperSlider;

packages/blueprint-component-mapper/src/sub-form/sub-form.js

-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@ const SubForm = ({ title, description, fields, ...props }) => {
1717
);
1818
};
1919

20-
2120
export default SubForm;

packages/blueprint-component-mapper/src/switch/switch.js

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ const Switch = ({ input, isRequired, label, onText, offText, providerRequired, .
2020
/>
2121
);
2222

23-
2423
const WrapperSwitch = (props) => <FormGroupWrapper {...props} hideLabel type="checkbox" Component={Switch} />;
2524

2625
export default WrapperSwitch;

packages/blueprint-component-mapper/src/tabs/tabs.js

-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,4 @@ const Tabs = ({ component, name, fields, ...props }) => {
1515
);
1616
};
1717

18-
1918
export default Tabs;

packages/blueprint-component-mapper/src/text-field/text-field.js

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import propsCatcher from '../props-catcher/props-catcher';
77

88
const TextField = ({ input, ...props }) => <InputGroup id={input.name} {...propsCatcher(props)} {...input} />;
99

10-
1110
const WrapperTextField = (props) => <FormGroupWrapper {...props} Component={TextField} />;
1211

1312
export default WrapperTextField;

packages/blueprint-component-mapper/src/time-picker/time-picker.js

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import propsCatcher from '../props-catcher/props-catcher';
77

88
const TimePicker = ({ input, ...props }) => <BTimePicker id={input.name} {...propsCatcher(props)} {...input} value={input.value || null} />;
99

10-
1110
const WrapperTimePicker = (props) => <FormGroupWrapper {...props} Component={TimePicker} />;
1211

1312
export default WrapperTimePicker;

packages/carbon-component-mapper/src/date-picker/date-picker.js

-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,4 @@ const DatePicker = (props) => {
3131
);
3232
};
3333

34-
3534
export default DatePicker;

packages/carbon-component-mapper/src/wizard/wizard.js

-6
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ const Layout = ({ nav, fields, WizardBodyProps }) => {
5959
);
6060
};
6161

62-
Layout;
63-
6462
const VerticalLayout = ({ nav, fields, WizardBodyProps }) => {
6563
const { body } = useStyles();
6664

@@ -78,8 +76,6 @@ const VerticalLayout = ({ nav, fields, WizardBodyProps }) => {
7876
);
7977
};
8078

81-
VerticalLayout;
82-
8379
const WizardInternal = ({
8480
stepsInfo,
8581
buttonLabels,
@@ -146,8 +142,6 @@ const WizardInternal = ({
146142
);
147143
};
148144

149-
WizardInternal;
150-
151145
const Wizard = (props) => <WizardCommon Wizard={WizardInternal} {...props} />;
152146

153147
export default Wizard;

packages/pf4-component-mapper/src/date-picker/date-picker.js

-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,4 @@ const DatePicker = (props) => {
2929
);
3030
};
3131

32-
3332
export default DatePicker;

0 commit comments

Comments
 (0)