Skip to content

Commit

Permalink
chore: build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelOsborne committed Jan 17, 2025
1 parent e2325c3 commit 29cbb6e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/dotlottie-web-example/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -455,9 +455,9 @@ fetch(
for (const marker of markers) {
const option = document.createElement('option');

option.value = marker.name;
option.value = String(marker.name);

option.textContent = marker.name;
option.textContent = String(marker.name);

markerSelect.appendChild(option);
}
Expand Down
15 changes: 15 additions & 0 deletions packages/solid/tsup.config.bundled_apze38ie5wo.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// tsup.config.ts
import { solidPlugin } from 'esbuild-plugin-solid';

Check failure on line 2 in packages/solid/tsup.config.bundled_apze38ie5wo.mjs

View workflow job for this annotation

GitHub Actions / validate

Filename 'tsup.config.bundled_apze38ie5wo.mjs' does not match the naming convention
import { defineConfig } from 'tsup';
var tsup_config_default = defineConfig({
entry: ['src/index.ts'],

Check failure on line 5 in packages/solid/tsup.config.bundled_apze38ie5wo.mjs

View workflow job for this annotation

GitHub Actions / validate

Identifier 'tsup_config_default' is not in camel case
clean: true,
dts: true,
sourcemap: true,
format: ['esm'],
tsconfig: 'tsconfig.build.json',
external: ['solid-js'],
esbuildPlugins: [solidPlugin()],
});
export { tsup_config_default as default };
//# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsidHN1cC5jb25maWcudHMiXSwKICAic291cmNlc0NvbnRlbnQiOiBbImNvbnN0IF9faW5qZWN0ZWRfZmlsZW5hbWVfXyA9IFwiL1VzZXJzL3NhbS9Qcm9qZWN0cy9Mb3R0aWVGaWxlcy9HaXRodWIvQGRvdGxvdHRpZS9Ad2ViL2RvdGxvdHRpZS13ZWIvcGFja2FnZXMvc29saWQvdHN1cC5jb25maWcudHNcIjtjb25zdCBfX2luamVjdGVkX2Rpcm5hbWVfXyA9IFwiL1VzZXJzL3NhbS9Qcm9qZWN0cy9Mb3R0aWVGaWxlcy9HaXRodWIvQGRvdGxvdHRpZS9Ad2ViL2RvdGxvdHRpZS13ZWIvcGFja2FnZXMvc29saWRcIjtjb25zdCBfX2luamVjdGVkX2ltcG9ydF9tZXRhX3VybF9fID0gXCJmaWxlOi8vL1VzZXJzL3NhbS9Qcm9qZWN0cy9Mb3R0aWVGaWxlcy9HaXRodWIvQGRvdGxvdHRpZS9Ad2ViL2RvdGxvdHRpZS13ZWIvcGFja2FnZXMvc29saWQvdHN1cC5jb25maWcudHNcIjtpbXBvcnQgeyBzb2xpZFBsdWdpbiB9IGZyb20gJ2VzYnVpbGQtcGx1Z2luLXNvbGlkJztcbmltcG9ydCB7IGRlZmluZUNvbmZpZyB9IGZyb20gJ3RzdXAnO1xuXG5leHBvcnQgZGVmYXVsdCBkZWZpbmVDb25maWcoe1xuICBlbnRyeTogWydzcmMvaW5kZXgudHMnXSxcbiAgY2xlYW46IHRydWUsXG4gIGR0czogdHJ1ZSxcbiAgc291cmNlbWFwOiB0cnVlLFxuICBmb3JtYXQ6IFsnZXNtJ10sXG4gIHRzY29uZmlnOiAndHNjb25maWcuYnVpbGQuanNvbicsXG4gIGV4dGVybmFsOiBbJ3NvbGlkLWpzJ10sXG4gIGVzYnVpbGRQbHVnaW5zOiBbc29saWRQbHVnaW4oKV0sXG59KTtcbiJdLAogICJtYXBwaW5ncyI6ICI7QUFBdVksU0FBUyxtQkFBbUI7QUFDbmEsU0FBUyxvQkFBb0I7QUFFN0IsSUFBTyxzQkFBUSxhQUFhO0FBQUEsRUFDMUIsT0FBTyxDQUFDLGNBQWM7QUFBQSxFQUN0QixPQUFPO0FBQUEsRUFDUCxLQUFLO0FBQUEsRUFDTCxXQUFXO0FBQUEsRUFDWCxRQUFRLENBQUMsS0FBSztBQUFBLEVBQ2QsVUFBVTtBQUFBLEVBQ1YsVUFBVSxDQUFDLFVBQVU7QUFBQSxFQUNyQixnQkFBZ0IsQ0FBQyxZQUFZLENBQUM7QUFDaEMsQ0FBQzsiLAogICJuYW1lcyI6IFtdCn0K

0 comments on commit 29cbb6e

Please sign in to comment.