Skip to content

Commit

Permalink
fix: Update rollup
Browse files Browse the repository at this point in the history
  • Loading branch information
ihiroky committed Feb 11, 2024
1 parent 7b5f0f5 commit 08e7c59
Show file tree
Hide file tree
Showing 7 changed files with 229 additions and 7 deletions.
224 changes: 223 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/app/package.json
Expand Up @@ -16,7 +16,7 @@
"watch": "node scripts/watch.mjs",
"serve": "node scripts/serve.mjs",
"build-comment": "NODE_ENV=production rollup -c rollup/comment.js",
"build-desktop": "rollup -c rollup/desktop.js",
"build-desktop": "rollup -c rollup/desktop.mjs",
"build-servers": "NODE_ENV=production rollup -c rollup/server.js",
"build-extension": "NODE_ENV=production rollup -c rollup/extension.js",
"start-desktop": "electron . --open-dev-tools --verbose",
Expand Down Expand Up @@ -71,7 +71,7 @@
"jest-environment-jsdom": "^28.1.2",
"nodemon": "^2.0.16",
"react-test-renderer": "^18.1.0",
"rollup": "^2.56.3",
"rollup": "^4.10.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"supertest": "^6.1.6",
Expand Down
File renamed without changes.
@@ -1,4 +1,4 @@
import { plugins, onwarn, watch } from './c.js'
import { plugins, onwarn, watch } from './c.mjs'
import { mkdirSync } from 'fs'
import { apps, toRollupCopyPluginFormat } from '../scripts/apps.mjs'

Expand Down
@@ -1,4 +1,4 @@
import { plugins, onwarn, watch, } from './c.js'
import { plugins, onwarn, watch, } from './c.mjs'
import { apps, entryPointsToOutFiles } from '../scripts/apps.mjs'

const entryPoints = apps.desktop.entryPoints
Expand Down
@@ -1,4 +1,4 @@
import { plugins, onwarn, watch } from './c.js'
import { plugins, onwarn, watch } from './c.mjs'
import { mkdirSync } from 'fs'
import { apps, toRollupCopyPluginFormat, entryPointsToOutFiles } from '../scripts/apps.mjs'
import path from 'node:path'
Expand Down
@@ -1,4 +1,4 @@
import { plugins, onwarn, watch } from './c.js'
import { plugins, onwarn, watch } from './c.mjs'
import { apps } from '../scripts/apps.mjs'

export default [
Expand Down

0 comments on commit 08e7c59

Please sign in to comment.