Compare commits
No commits in common. "5e8ee4dab83190d1d556871403d2a55c7f75e7cf" and "74e62e73d40c93b45982108e6138e2f910259ecf" have entirely different histories.
5e8ee4dab8
...
74e62e73d4
|
@ -1 +0,0 @@
|
||||||
nodeLinker: node-modules
|
|
|
@ -1,2 +0,0 @@
|
||||||
declare const preset: import("rollup").RollupOptions;
|
|
||||||
export default preset;
|
|
|
@ -1,8 +0,0 @@
|
||||||
import { defineConfig } from "rollup";
|
|
||||||
import commonjs from "@rollup/plugin-commonjs";
|
|
||||||
import { nodeResolve } from "@rollup/plugin-node-resolve";
|
|
||||||
import { bundleNativeModulesPlugin } from "@lumeweb/rollup-plugin-bundle-native-modules";
|
|
||||||
const preset = defineConfig({
|
|
||||||
plugins: [nodeResolve(), commonjs(), bundleNativeModulesPlugin()],
|
|
||||||
});
|
|
||||||
export default preset;
|
|
14
package.json
14
package.json
|
@ -1,14 +0,0 @@
|
||||||
{
|
|
||||||
"name": "@lumeweb/relay-plugin-rollup-preset",
|
|
||||||
"packageManager": "yarn@3.3.0",
|
|
||||||
"main": "dist/index.js",
|
|
||||||
"dependencies": {
|
|
||||||
"@lumeweb/rollup-plugin-bundle-native-modules": "https://git.lumeweb.com/LumeWeb/rollup-plugin-bundle-native-modules.git",
|
|
||||||
"@rollup/plugin-commonjs": "^23.0.4",
|
|
||||||
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
||||||
"rollup": "^3.7.4"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"prettier": "^2.8.1"
|
|
||||||
}
|
|
||||||
}
|
|
10
src/index.ts
10
src/index.ts
|
@ -1,10 +0,0 @@
|
||||||
import { defineConfig } from "rollup";
|
|
||||||
import commonjs from "@rollup/plugin-commonjs";
|
|
||||||
import { nodeResolve } from "@rollup/plugin-node-resolve";
|
|
||||||
import { bundleNativeModulesPlugin } from "@lumeweb/rollup-plugin-bundle-native-modules";
|
|
||||||
|
|
||||||
const preset = defineConfig({
|
|
||||||
plugins: [nodeResolve(), commonjs(), bundleNativeModulesPlugin()],
|
|
||||||
});
|
|
||||||
|
|
||||||
export default preset;
|
|
|
@ -1,15 +0,0 @@
|
||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"target": "es2020",
|
|
||||||
"module": "esnext",
|
|
||||||
"moduleResolution": "node",
|
|
||||||
"rootDir": "src",
|
|
||||||
"outDir": "dist",
|
|
||||||
"esModuleInterop": true,
|
|
||||||
"forceConsistentCasingInFileNames": true,
|
|
||||||
"strict": true,
|
|
||||||
"skipLibCheck": true,
|
|
||||||
"resolveJsonModule": true,
|
|
||||||
"declaration": true
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue