Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TAS-792] ⬆️ Upgrade node 18 #418

Merged
merged 3 commits into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
node: [18]

steps:
- name: Checkout 🛎
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16
FROM node:18
# for crawler chrome
RUN apt-get update && apt-get install -yq gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libnss3 libgbm-dev lsb-release xdg-utils wget
WORKDIR /app
Expand Down
4 changes: 2 additions & 2 deletions nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ export default {
},
// Global CSS: https://go.nuxtjs.dev/config-css
css: [
{ src: '@likecoin/wallet-connector/dist/style.css', lang: 'css' },
{ src: '~/assets/css/global.css', lang: 'css' },
'@likecoin/wallet-connector/dist/style.css',
'~/assets/css/global.css',
],

render: {
Expand Down
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=16"
"node": ">=18"
},
"scripts": {
"dev": "IS_TESTNET=TRUE nuxt",
Expand Down Expand Up @@ -51,7 +51,7 @@
"lodash.debounce": "^4.0.8",
"mime-types": "^2.1.34",
"multer": "^1.4.2",
"nuxt": "^2.15.7",
"nuxt": "^2.17.2",
"p5": "^1.4.0",
"portal-vue": "2.1.7",
"puppeteer": "^16.2.0",
Expand All @@ -60,7 +60,6 @@
"puppeteer-extra-plugin-stealth": "^2.11.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^2.2.16",
"uuid": "^8.3.2",
"vue-class-component": "^7.2.6",
"vue-gtag": "^1.16.1",
Expand All @@ -75,7 +74,7 @@
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/storybook": "^4.1.1",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/tailwindcss": "^4.2.0",
"@nuxtjs/tailwindcss": "^5.3.5",
"@types/lodash.chunk": "^4.2.6",
"@types/lodash.debounce": "^4.0.6",
"@types/mime-types": "^2.1.1",
Expand Down
Loading
Loading