forked from yjs/yjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
undo formatting changes in rollup config
- Loading branch information
Showing
1 changed file
with
55 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,129 +1,111 @@ | ||
import nodeResolve from "@rollup/plugin-node-resolve" | ||
import commonjs from "@rollup/plugin-commonjs" | ||
import nodeResolve from '@rollup/plugin-node-resolve' | ||
import commonjs from '@rollup/plugin-commonjs' | ||
|
||
const localImports = process.env.LOCALIMPORTS | ||
|
||
const customModules = new Set([ | ||
"y-websocket", | ||
"y-codemirror", | ||
"y-ace", | ||
"y-textarea", | ||
"y-quill", | ||
"y-dom", | ||
"y-prosemirror", | ||
'y-websocket', | ||
'y-codemirror', | ||
'y-ace', | ||
'y-textarea', | ||
'y-quill', | ||
'y-dom', | ||
'y-prosemirror' | ||
]) | ||
/** | ||
* @type {Set<any>} | ||
*/ | ||
const customLibModules = new Set(["lib0", "y-protocols"]) | ||
const customLibModules = new Set(['lib0', 'y-protocols']) | ||
const debugResolve = { | ||
resolveId(importee) { | ||
if (importee === "yjs") { | ||
if (importee === 'yjs') { | ||
return `${process.cwd()}/src/index.js` | ||
} | ||
if (localImports) { | ||
if (customModules.has(importee.split("/")[0])) { | ||
if (customModules.has(importee.split('/')[0])) { | ||
return `${process.cwd()}/../${importee}/src/${importee}.js` | ||
} | ||
if (customLibModules.has(importee.split("/")[0])) { | ||
if (customLibModules.has(importee.split('/')[0])) { | ||
return `${process.cwd()}/../${importee}` | ||
} | ||
} | ||
return null | ||
}, | ||
} | ||
} | ||
|
||
export default [ | ||
{ | ||
input: "./src/index.js", | ||
input: './src/index.js', | ||
output: { | ||
name: "Y", | ||
file: "dist/yjs.cjs", | ||
format: "cjs", | ||
sourcemap: true, | ||
name: 'Y', | ||
file: 'dist/yjs.cjs', | ||
format: 'cjs', | ||
sourcemap: true | ||
}, | ||
external: (id) => /^lib0\//.test(id), | ||
external: id => /^lib0\//.test(id) | ||
}, | ||
{ | ||
input: "./src/index.js", | ||
input: './src/index.js', | ||
output: { | ||
name: "Y", | ||
file: "dist/yjs.mjs", | ||
format: "esm", | ||
sourcemap: true, | ||
name: 'Y', | ||
file: 'dist/yjs.mjs', | ||
format: 'esm', | ||
sourcemap: true | ||
}, | ||
external: (id) => /^lib0\//.test(id), | ||
external: id => /^lib0\//.test(id) | ||
}, | ||
{ | ||
input: "./src/index.js", | ||
input: './tests/testHelper.js', | ||
output: { | ||
name: "Y", | ||
file: "dist/yjs.amd.js", | ||
format: "amd", | ||
sourcemap: true, | ||
name: 'Y', | ||
file: 'dist/testHelper.mjs', | ||
format: 'esm', | ||
sourcemap: true | ||
}, | ||
plugins: [ | ||
nodeResolve({ | ||
browser: true, // Use browser-compatible versions of modules | ||
extensions: [".js", ".ts"], | ||
preferBuiltins: false, // Do not prefer Node.js built-ins | ||
}), | ||
commonjs(), | ||
// terser, etc. | ||
], | ||
}, | ||
{ | ||
input: "./tests/testHelper.js", | ||
output: { | ||
name: "Y", | ||
file: "dist/testHelper.mjs", | ||
format: "esm", | ||
sourcemap: true, | ||
}, | ||
external: (id) => /^lib0\//.test(id) || id === "yjs", | ||
external: id => /^lib0\//.test(id) || id === 'yjs', | ||
plugins: [ | ||
{ | ||
resolveId(importee) { | ||
if (importee === "../src/index.js") { | ||
return "yjs" | ||
if (importee === '../src/index.js') { | ||
return 'yjs' | ||
} | ||
return null | ||
}, | ||
}, | ||
], | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
input: "./tests/index.js", | ||
input: './tests/index.js', | ||
output: { | ||
name: "test", | ||
file: "dist/tests.js", | ||
format: "iife", | ||
sourcemap: true, | ||
name: 'test', | ||
file: 'dist/tests.js', | ||
format: 'iife', | ||
sourcemap: true | ||
}, | ||
plugins: [ | ||
debugResolve, | ||
nodeResolve({ | ||
mainFields: ["browser", "module", "main"], | ||
mainFields: ['browser', 'module', 'main'] | ||
}), | ||
commonjs(), | ||
], | ||
commonjs() | ||
] | ||
}, | ||
{ | ||
input: "./tests/index.js", | ||
input: './tests/index.js', | ||
output: { | ||
name: "test", | ||
file: "dist/tests.cjs", | ||
format: "cjs", | ||
sourcemap: true, | ||
name: 'test', | ||
file: 'dist/tests.cjs', | ||
format: 'cjs', | ||
sourcemap: true | ||
}, | ||
plugins: [ | ||
debugResolve, | ||
nodeResolve({ | ||
mainFields: ["node", "module", "main"], | ||
exportConditions: ["node", "module", "import", "default"], | ||
mainFields: ['node', 'module', 'main'], | ||
exportConditions: ['node', 'module', 'import', 'default'] | ||
}), | ||
commonjs(), | ||
commonjs() | ||
], | ||
external: (id) => /^lib0\//.test(id), | ||
}, | ||
external: id => /^lib0\//.test(id) | ||
} | ||
] |