Skip to content

Commit 7dcd0de

Browse files
authored
Merge pull request #51 from forumone/1.x-RC
1.0.4
2 parents b102353 + 1dea2aa commit 7dcd0de

31 files changed

+114
-32
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.12
1+
18.17

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextjs-project",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"private": true,
55
"scripts": {
66
"prepare": "husky install"

services/app/.ddev/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ mutagen_enabled: false
1616
use_dns_when_possible: true
1717
composer_version: "2"
1818
web_environment: []
19-
nodejs_version: "16"
19+
nodejs_version: "18"
2020
hooks:
2121
post-start:
2222
# Detects to see if the node_modules folder exists

services/app/.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.19
1+
18.17

services/app/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG NODE_VERSION="16"
1+
ARG NODE_VERSION="18"
22

33
FROM node:${NODE_VERSION}-alpine AS artifact
44
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
@@ -23,4 +23,4 @@ RUN npm run build-storybook
2323
RUN mv /app/storybook-static /app/public/storybook
2424

2525
# Adding artifact tobe the default step to run
26-
FROM artifact
26+
FROM artifact

services/app/lib/icon-template.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ const iconTemplate = (
5353
}
5454

5555
return tpl`
56+
// This component is automatically generated.
57+
// SVGs should be added to icon/svgs.
58+
// See the project documentation for more information.
5659
// tslint:disable:ordered-imports
5760
import clsx from 'clsx';
5861
${imports};

services/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextjs-project",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

services/app/source/01-global/icon/icons/AngleDoubleLeft.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// This component is automatically generated.
2+
// SVGs should be added to icon/svgs.
3+
// See the project documentation for more information.
14
// tslint:disable:ordered-imports
25
import clsx from 'clsx';
36
import * as React from 'react';

services/app/source/01-global/icon/icons/AngleDoubleRight.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// This component is automatically generated.
2+
// SVGs should be added to icon/svgs.
3+
// See the project documentation for more information.
14
// tslint:disable:ordered-imports
25
import clsx from 'clsx';
36
import * as React from 'react';

services/app/source/01-global/icon/icons/AngleDown.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// This component is automatically generated.
2+
// SVGs should be added to icon/svgs.
3+
// See the project documentation for more information.
14
// tslint:disable:ordered-imports
25
import clsx from 'clsx';
36
import * as React from 'react';

0 commit comments

Comments
 (0)