Skip to content

Commit e9f0e96

Browse files
authored
Merge pull request #52 from ioaiaaii/feat/major-updates
2 parents e4160f6 + 9cc1d19 commit e9f0e96

File tree

24 files changed

+1712
-844
lines changed

24 files changed

+1712
-844
lines changed

deploy/helm/ioaiaaii/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ annotations:
33
licenses: Apache-2.0
44
type: application
55
apiVersion: v2
6-
appVersion: v1.2.2
6+
appVersion: v1.3.0
77
dependencies:
88
- name: common
99
repository: oci://registry-1.docker.io/bitnamicharts

deploy/iac/main.tf

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,13 @@ locals {
8080
source = "${local.base_path}/assets/fonts/Montserrat-VariableFont_wght.ttf"
8181
cache_control = "public, max-age=2592000"
8282
content_type = "font/ttf"
83-
}
83+
},
84+
bg = {
85+
name = "assets/images/bg.webp"
86+
source = "${local.base_path}/assets/images/bg.webp"
87+
cache_control = "public, max-age=2592000"
88+
content_type = "image/webp"
89+
}
8490
}
8591
}
8692

web/eslint.config.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ import pluginVue from 'eslint-plugin-vue'
33
import pluginVitest from '@vitest/eslint-plugin'
44
import pluginCypress from 'eslint-plugin-cypress/flat'
55
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
6+
import tsPlugin from '@typescript-eslint/eslint-plugin'
7+
import tsParser from '@typescript-eslint/parser'
8+
import vueParser from 'vue-eslint-parser';
69

710
export default [
811
{
@@ -38,4 +41,23 @@ export default [
3841
],
3942
},
4043
skipFormatting,
44+
// Pass inspira ui liquid background component to typescript-eslint parser
45+
{
46+
files: ['src/components/insprira/LiquidBackground.vue'],
47+
languageOptions: {
48+
parser: vueParser,
49+
parserOptions: {
50+
parser: tsParser,
51+
ecmaVersion: 'latest',
52+
sourceType: 'module',
53+
extraFileExtensions: ['.vue'],
54+
},
55+
},
56+
plugins: {
57+
'@typescript-eslint': tsPlugin,
58+
},
59+
rules: {
60+
...tsPlugin.configs.recommended.rules,
61+
},
62+
}
4163
]

0 commit comments

Comments
 (0)