2021-03-24 21:11:14 +00:00
|
|
|
<script>
|
2021-04-02 13:05:23 +00:00
|
|
|
import { application } from "@store";
|
2021-03-24 21:11:14 +00:00
|
|
|
</script>
|
|
|
|
|
|
2021-04-02 13:05:23 +00:00
|
|
|
<div class="grid grid-cols-1 max-w-2xl md:mx-auto mx-6 text-center">
|
2021-03-24 21:11:14 +00:00
|
|
|
<label for="buildCommand">Build Command</label>
|
|
|
|
|
<input
|
2021-04-02 13:05:23 +00:00
|
|
|
class="mb-6"
|
2021-03-24 21:11:14 +00:00
|
|
|
id="buildCommand"
|
|
|
|
|
bind:value="{$application.build.command.build}"
|
|
|
|
|
placeholder="eg: yarn build"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<label for="installCommand">Install Command</label>
|
|
|
|
|
<input
|
2021-04-02 13:05:23 +00:00
|
|
|
class="mb-6"
|
2021-03-24 21:11:14 +00:00
|
|
|
id="installCommand"
|
|
|
|
|
bind:value="{$application.build.command.installation}"
|
|
|
|
|
placeholder="eg: yarn install"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<label for="baseDir">Base Directory</label>
|
2021-04-02 13:05:23 +00:00
|
|
|
<input
|
|
|
|
|
id="baseDir"
|
|
|
|
|
class="mb-6"
|
|
|
|
|
bind:value="{$application.build.directory}"
|
|
|
|
|
placeholder="/"
|
|
|
|
|
/>
|
2021-03-24 21:11:14 +00:00
|
|
|
</div>
|