Skip to content

Commit

Permalink
Merge pull request #840 from gregberge/upgrades
Browse files Browse the repository at this point in the history
upgrades
  • Loading branch information
gregberge committed Mar 24, 2023
2 parents 21b6209 + 6695121 commit 4df4e13
Show file tree
Hide file tree
Showing 26 changed files with 16,655 additions and 11,571 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [14.x, 16.x, 18.x, 19.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
7 changes: 5 additions & 2 deletions build/rollup.config.js → build/rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
import path from 'path'
import { resolve } from 'node:path'
import { readFileSync } from 'node:fs'
import json from '@rollup/plugin-json'
import dts from 'rollup-plugin-dts'
import esbuild from 'rollup-plugin-esbuild'

// eslint-disable-next-line @typescript-eslint/no-var-requires
const pkg = require(path.resolve(process.cwd(), './package.json'))
const pkg = JSON.parse(
readFileSync(resolve(process.cwd(), './package.json'), 'utf-8'),
)
const name = pkg.main ? pkg.main.replace(/\.js$/, '') : './dist/index'

const bundle = (config) => ({
Expand Down

1 comment on commit 4df4e13

@vercel
Copy link

@vercel vercel bot commented on 4df4e13 Mar 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

svgr – ./

api.react-svgr.com
svgr-git-main-gregberge.vercel.app
svgr-gregberge.vercel.app

Please sign in to comment.