apibara 2.1.0-beta.3 → 2.1.0-beta.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunks/add.mjs +17 -8
- package/dist/chunks/add.mjs.map +1 -0
- package/dist/chunks/build.mjs +5 -2
- package/dist/chunks/build.mjs.map +1 -0
- package/dist/chunks/dev.mjs +56 -21
- package/dist/chunks/dev.mjs.map +1 -0
- package/dist/chunks/init.mjs +12 -7
- package/dist/chunks/init.mjs.map +1 -0
- package/dist/chunks/prepare.mjs +5 -2
- package/dist/chunks/prepare.mjs.map +1 -0
- package/dist/chunks/start.mjs +16 -11
- package/dist/chunks/start.mjs.map +1 -0
- package/dist/chunks/write-project-info.mjs +51 -0
- package/dist/chunks/write-project-info.mjs.map +1 -0
- package/dist/cli/index.mjs +3 -1
- package/dist/cli/index.mjs.map +1 -0
- package/dist/common/index.d.mts +28 -0
- package/dist/common/index.d.ts +28 -0
- package/dist/common/index.mjs +64 -0
- package/dist/common/index.mjs.map +1 -0
- package/dist/config/index.mjs +1 -0
- package/dist/config/index.mjs.map +1 -0
- package/dist/core/index.mjs +133 -68
- package/dist/core/index.mjs.map +1 -0
- package/dist/create/index.d.mts +2 -1
- package/dist/create/index.d.ts +2 -1
- package/dist/create/index.mjs +144 -115
- package/dist/create/index.mjs.map +1 -0
- package/dist/hooks/index.mjs +6 -1
- package/dist/hooks/index.mjs.map +1 -0
- package/dist/indexer/index.d.ts +1 -0
- package/dist/indexer/index.mjs +1 -0
- package/dist/indexer/plugins.d.ts +1 -0
- package/dist/indexer/plugins.mjs +1 -0
- package/dist/indexer/testing.d.ts +1 -0
- package/dist/indexer/testing.mjs +1 -0
- package/dist/indexer/vcr.d.ts +1 -0
- package/dist/indexer/vcr.mjs +1 -0
- package/dist/rolldown/index.d.mts +7 -0
- package/dist/rolldown/index.d.ts +7 -0
- package/dist/rolldown/index.mjs +122 -0
- package/dist/rolldown/index.mjs.map +1 -0
- package/dist/runtime/dev.mjs +23 -10
- package/dist/runtime/internal/app.d.ts +16 -1
- package/dist/runtime/internal/app.mjs +51 -21
- package/dist/runtime/project-info.d.ts +3 -0
- package/dist/runtime/project-info.mjs +67 -0
- package/dist/runtime/start.mjs +27 -10
- package/dist/shared/apibara.63c9a277.mjs +30 -0
- package/dist/shared/apibara.63c9a277.mjs.map +1 -0
- package/dist/shared/apibara.730bb1e4.mjs +18 -0
- package/dist/shared/apibara.730bb1e4.mjs.map +1 -0
- package/dist/types/index.d.mts +24 -20
- package/dist/types/index.d.ts +24 -20
- package/dist/types/index.mjs +1 -0
- package/dist/types/index.mjs.map +1 -0
- package/package.json +33 -16
- package/src/cli/commands/add.ts +16 -7
- package/src/cli/commands/build.ts +5 -2
- package/src/cli/commands/dev.ts +64 -20
- package/src/cli/commands/init.ts +12 -7
- package/src/cli/commands/prepare.ts +4 -2
- package/src/cli/commands/start.ts +17 -10
- package/src/cli/commands/write-project-info.ts +56 -0
- package/src/cli/common.ts +33 -1
- package/src/cli/index.ts +2 -0
- package/src/common/constants.ts +6 -0
- package/src/common/helper.ts +86 -0
- package/src/common/index.ts +2 -0
- package/src/core/apibara.ts +7 -2
- package/src/core/build/build.ts +13 -5
- package/src/core/build/dev.ts +46 -23
- package/src/core/build/error.ts +9 -14
- package/src/core/build/prepare.ts +5 -3
- package/src/core/build/prod.ts +25 -16
- package/src/core/build/types.ts +11 -1
- package/src/core/config/defaults.ts +3 -0
- package/src/core/config/loader.ts +15 -7
- package/src/core/config/resolvers/runtime.resolver.ts +44 -0
- package/src/core/config/update.ts +6 -2
- package/src/create/add.ts +10 -9
- package/src/create/constants.ts +9 -11
- package/src/create/init.ts +8 -5
- package/src/create/templates.ts +132 -105
- package/src/hooks/useRuntimeConfig.ts +4 -1
- package/src/indexer/index.ts +1 -0
- package/src/indexer/plugins.ts +1 -0
- package/src/indexer/testing.ts +1 -0
- package/src/indexer/vcr.ts +1 -0
- package/src/rolldown/config.ts +84 -0
- package/src/rolldown/index.ts +2 -0
- package/src/{rollup → rolldown}/plugins/indexers.ts +3 -3
- package/src/rolldown/plugins/instrumentation.ts +68 -0
- package/src/runtime/dev.ts +25 -9
- package/src/runtime/internal/app.ts +75 -29
- package/src/runtime/project-info.ts +90 -0
- package/src/runtime/start.ts +30 -9
- package/src/types/config.ts +27 -13
- package/src/types/hooks.ts +8 -5
- package/src/types/index.ts +1 -1
- package/src/types/rolldown.ts +5 -0
- package/src/types/virtual/indexers.d.ts +4 -1
- package/src/types/virtual/instrumentation.d.ts +4 -0
- package/dist/rollup/index.d.mts +0 -6
- package/dist/rollup/index.d.ts +0 -6
- package/dist/rollup/index.mjs +0 -150
- package/dist/shared/apibara.1b515d04.mjs +0 -8
- package/src/core/config/resolvers/preset.resolver.ts +0 -9
- package/src/core/config/resolvers/runtime-config.resolver.ts +0 -6
- package/src/rollup/config.ts +0 -87
- package/src/rollup/index.ts +0 -2
- package/src/rollup/plugins/config.ts +0 -12
- package/src/rollup/plugins/esm-shim.ts +0 -69
- package/src/types/rollup.ts +0 -8
- package/src/types/virtual/config.d.ts +0 -3
package/src/rollup/config.ts
DELETED
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
import { builtinModules } from "node:module";
|
|
2
|
-
import commonjs from "@rollup/plugin-commonjs";
|
|
3
|
-
import json from "@rollup/plugin-json";
|
|
4
|
-
import { nodeResolve } from "@rollup/plugin-node-resolve";
|
|
5
|
-
import type { Apibara, RollupConfig } from "apibara/types";
|
|
6
|
-
import { join } from "pathe";
|
|
7
|
-
import type { OutputPluginOption } from "rollup";
|
|
8
|
-
|
|
9
|
-
import defu from "defu";
|
|
10
|
-
import { appConfig } from "./plugins/config";
|
|
11
|
-
import { esmShim } from "./plugins/esm-shim";
|
|
12
|
-
import { indexers } from "./plugins/indexers";
|
|
13
|
-
|
|
14
|
-
const runtimeDependencies = ["better-sqlite3", "@electric-sql/pglite"];
|
|
15
|
-
|
|
16
|
-
export function getRollupConfig(apibara: Apibara): RollupConfig {
|
|
17
|
-
const extensions: string[] = [
|
|
18
|
-
".ts",
|
|
19
|
-
".mjs",
|
|
20
|
-
".js",
|
|
21
|
-
".json",
|
|
22
|
-
".node",
|
|
23
|
-
".tsx",
|
|
24
|
-
".jsx",
|
|
25
|
-
];
|
|
26
|
-
|
|
27
|
-
const rollupConfig: RollupConfig & { plugins: OutputPluginOption[] } = defu(
|
|
28
|
-
// biome-ignore lint/suspicious/noExplicitAny: apibara.options.rollupConfig is typed
|
|
29
|
-
apibara.options.rollupConfig as any,
|
|
30
|
-
<RollupConfig>{
|
|
31
|
-
input: apibara.options.entry,
|
|
32
|
-
output: {
|
|
33
|
-
dir: join(apibara.options.outputDir || "./.apibara/build"),
|
|
34
|
-
format: "esm",
|
|
35
|
-
exports: "auto",
|
|
36
|
-
entryFileNames: "[name].mjs",
|
|
37
|
-
chunkFileNames: "chunks/[name]-[hash].mjs",
|
|
38
|
-
generatedCode: {
|
|
39
|
-
constBindings: true,
|
|
40
|
-
},
|
|
41
|
-
sourcemap: true,
|
|
42
|
-
sourcemapExcludeSources: true,
|
|
43
|
-
sourcemapIgnoreList(relativePath, sourcemapPath) {
|
|
44
|
-
return relativePath.includes("node_modules");
|
|
45
|
-
},
|
|
46
|
-
},
|
|
47
|
-
plugins: [],
|
|
48
|
-
onwarn(warning, rollupWarn) {
|
|
49
|
-
if (
|
|
50
|
-
!["CIRCULAR_DEPENDENCY", "EVAL", "THIS_IS_UNDEFINED"].includes(
|
|
51
|
-
warning.code || "",
|
|
52
|
-
) &&
|
|
53
|
-
!warning.message.includes("Unsupported source map comment") &&
|
|
54
|
-
!warning.message.includes("@__PURE__") &&
|
|
55
|
-
!warning.message.includes("/*#__PURE__*/")
|
|
56
|
-
) {
|
|
57
|
-
rollupWarn(warning);
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
treeshake: true,
|
|
61
|
-
external: [...builtinModules, ...runtimeDependencies],
|
|
62
|
-
},
|
|
63
|
-
);
|
|
64
|
-
|
|
65
|
-
rollupConfig.plugins.push(esmShim());
|
|
66
|
-
rollupConfig.plugins.push(json());
|
|
67
|
-
|
|
68
|
-
rollupConfig.plugins.push(
|
|
69
|
-
commonjs({
|
|
70
|
-
strictRequires: true,
|
|
71
|
-
requireReturnsDefault: "auto",
|
|
72
|
-
...apibara.options.commonJS,
|
|
73
|
-
}),
|
|
74
|
-
);
|
|
75
|
-
|
|
76
|
-
rollupConfig.plugins.push(
|
|
77
|
-
nodeResolve({
|
|
78
|
-
extensions,
|
|
79
|
-
preferBuiltins: true,
|
|
80
|
-
mainFields: ["main"],
|
|
81
|
-
}),
|
|
82
|
-
);
|
|
83
|
-
rollupConfig.plugins.push(indexers(apibara));
|
|
84
|
-
rollupConfig.plugins.push(appConfig(apibara));
|
|
85
|
-
|
|
86
|
-
return rollupConfig;
|
|
87
|
-
}
|
package/src/rollup/index.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import virtual from "@rollup/plugin-virtual";
|
|
2
|
-
import type { Apibara } from "apibara/types";
|
|
3
|
-
|
|
4
|
-
export function appConfig(apibara: Apibara) {
|
|
5
|
-
return virtual({
|
|
6
|
-
"#apibara-internal-virtual/config": `
|
|
7
|
-
import * as projectConfig from '${apibara.options._c12.configFile}';
|
|
8
|
-
|
|
9
|
-
export const config = projectConfig.default;
|
|
10
|
-
`,
|
|
11
|
-
});
|
|
12
|
-
}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import MagicString from "magic-string";
|
|
2
|
-
import type { Plugin } from "rollup";
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* An alternative to @rollup/plugin-esm-shim
|
|
6
|
-
*/
|
|
7
|
-
export function esmShim(): Plugin {
|
|
8
|
-
const ESMShim = `
|
|
9
|
-
// -- Shims --
|
|
10
|
-
import cjsUrl from 'node:url';
|
|
11
|
-
import cjsPath from 'node:path';
|
|
12
|
-
const __filename = cjsUrl.fileURLToPath(import.meta.url);
|
|
13
|
-
const __dirname = cjsPath.dirname(__filename);
|
|
14
|
-
// -- End Shims --
|
|
15
|
-
`;
|
|
16
|
-
|
|
17
|
-
const CJSyntaxRegex = /__filename|__dirname/;
|
|
18
|
-
|
|
19
|
-
return {
|
|
20
|
-
name: "esm-shim",
|
|
21
|
-
|
|
22
|
-
renderChunk(code, _chunk, opts) {
|
|
23
|
-
if (opts.format === "es") {
|
|
24
|
-
if (code.includes(ESMShim) || !CJSyntaxRegex.test(code)) {
|
|
25
|
-
return null;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
let endIndexOfLastImport = -1;
|
|
29
|
-
|
|
30
|
-
// Find the last import statement and its ending index
|
|
31
|
-
for (const match of code.matchAll(/^import\s.*';$/gm)) {
|
|
32
|
-
if (match.length === 0 || typeof match.index !== "number") {
|
|
33
|
-
continue;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
endIndexOfLastImport = match.index + match[0].length;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
const s = new MagicString(code);
|
|
40
|
-
s.appendRight(endIndexOfLastImport, ESMShim);
|
|
41
|
-
|
|
42
|
-
const sourceMap = s.generateMap({
|
|
43
|
-
includeContent: true,
|
|
44
|
-
});
|
|
45
|
-
|
|
46
|
-
let sourcesContent: string[] | undefined;
|
|
47
|
-
if (Array.isArray(sourceMap.sourcesContent)) {
|
|
48
|
-
sourcesContent = [];
|
|
49
|
-
for (let i = 0; i < sourceMap.sourcesContent.length; i++) {
|
|
50
|
-
const content = sourceMap.sourcesContent[i];
|
|
51
|
-
if (typeof content === "string") {
|
|
52
|
-
sourcesContent.push(content);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
return {
|
|
58
|
-
code: s.toString(),
|
|
59
|
-
map: {
|
|
60
|
-
...sourceMap,
|
|
61
|
-
sourcesContent,
|
|
62
|
-
},
|
|
63
|
-
};
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
return null;
|
|
67
|
-
},
|
|
68
|
-
};
|
|
69
|
-
}
|
package/src/types/rollup.ts
DELETED