Update adrema-form and compile in import mode

This commit is contained in:
philipp lang 2026-05-05 03:14:31 +02:00
parent 9a5518857e
commit 2c7e1a882f
3 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ steps:
- name: node_submodules - name: node_submodules
image: node:20.15.0-slim image: node:20.15.0-slim
commands: commands:
- cd packages/adrema-form && npm ci && npm run build && rm -R node_modules && cd ../../ - cd packages/adrema-form && npm ci && npm run build-import && rm -R node_modules && cd ../../
- name: node - name: node
image: node:20.15.0-slim image: node:20.15.0-slim

@ -1 +1 @@
Subproject commit 4edc8ee3d25b2cd64f2eeb14574f37d6c3920efe Subproject commit 010825124f7791dfc0dc607e23ec99f49be8aef5

View File

@ -67,7 +67,7 @@
<script lang="js" setup> <script lang="js" setup>
import { watch, computed, ref } from 'vue'; import { watch, computed, ref } from 'vue';
import { snakeCase } from 'change-case'; import { snakeCase } from 'change-case';
import '!/adrema-form/dist/main.js'; import '!/adrema-form/dist/assets/main.js';
import Asideform from './Asideform.vue'; import Asideform from './Asideform.vue';
import TextareaField from './TextareaField.vue'; import TextareaField from './TextareaField.vue';
import TextField from './TextField.vue'; import TextField from './TextField.vue';