Skip to content

Commit

Permalink
Merge pull request #3 from MBeggiato/chores
Browse files Browse the repository at this point in the history
chore: Update project version to 0.0.3 and refine configuration files
  • Loading branch information
MBeggiato authored Nov 6, 2024
2 parents 4f48709 + 0c61ceb commit 988737c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 12 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

# If you're using pnpm, add this step then change the commands and cache key below to use `pnpm`
# - name: Install pnpm
# uses: pnpm/action-setup@v2
# with:
# version: 8

- name: Install Node.js
uses: actions/setup-node@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "conventionalfighter",
"version": "0.0.2",
"version": "0.0.3",
"type": "module",
"scripts": {
"dev": "vite dev",
Expand Down
1 change: 1 addition & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//postcss.config.js
export default {
plugins: {
tailwindcss: {},
Expand Down
1 change: 1 addition & 0 deletions src/app.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* Tailwind setup */
@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities'
1 change: 1 addition & 0 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!--Global layout-->
<script lang="ts">
import '../app.css';
let { children } = $props();
Expand Down
4 changes: 2 additions & 2 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import { Select, Label, Input, Button } from 'flowbite-svelte';
let selected = $state('feat');
let countries = [
let commitTypes = [
{ value: 'build', name: 'build' },
{ value: 'ci', name: 'ci' },
{ value: 'chore', name: 'chore' },
Expand All @@ -28,7 +28,7 @@
<div class="flex flex-col items-start" style="width: 20%;">
<Label for="countries">Select an option</Label>
<Select id="countries" class="mt-2" bind:value={selected} placeholder="">
{#each countries as { value, name }}
{#each commitTypes as { value, name }}
<option {value}>{name}</option>
{/each}
</Select>
Expand Down
1 change: 0 additions & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export default {
theme: {
extend: {
colors: {
// flowbite-svelte
primary: {
50: '#FFF5F2',
100: '#FFF1EE',
Expand Down

0 comments on commit 988737c

Please sign in to comment.