Skip to content

Commit

Permalink
1.13.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
karamem0 committed Aug 16, 2024
1 parent 5ddc1bd commit f80a450
Show file tree
Hide file tree
Showing 18 changed files with 1,157 additions and 1,141 deletions.
238 changes: 0 additions & 238 deletions .eslintrc.json

This file was deleted.

15 changes: 5 additions & 10 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- develop

env:
BUILD_VERSION: '1.13.5'
BUILD_VERSION: '1.13.6'

jobs:
select-environment:
Expand All @@ -15,15 +15,10 @@ jobs:
id: select-environment
shell: pwsh
run: |
if ("${{github.ref}}" -eq "refs/heads/main") {
Write-Output "env-name=production" >> $env:GITHUB_OUTPUT
}
if ("${{github.ref}}" -eq "refs/heads/develop") {
Write-Output "env-name=development" >> $env:GITHUB_OUTPUT
}
Write-Output "env-name=$(@{'main'='production';'develop'='development'}['${{github.ref_name}}'])" >> $env:GITHUB_OUTPUT
outputs:
env-name: ${{steps.select-environment.outputs.env-name}}
build-client:
build-source:
needs: select-environment
runs-on: ubuntu-latest
environment:
Expand Down Expand Up @@ -82,10 +77,10 @@ jobs:
fail_ci_if_error: true
token: ${{secrets.CODECOV_TOKEN}}
slug: karamem0/hitofude
deploy-client:
deploy-source:
needs:
- select-environment
- build-client
- build-source
runs-on: ubuntu-latest
environment:
name: ${{needs.select-environment.outputs.env-name}}
Expand Down
19 changes: 0 additions & 19 deletions .stylelintrc.json

This file was deleted.

1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"eslint.format.enable": true,
"eslint.useFlatConfig": true,
"jest.runMode": "on-demand",
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"background": {
"activeOnStart": true,
"beginsPattern": "^VITE v[0-9\\.]+ ready in [0-9]+ms$",
"endsPattern": "https://(localhost|127.0.0.1):[0-9]+/$"
"endsPattern": "https://(?:localhost|127.0.0.1):[0-9]+/$"
}
}
],
Expand Down
32 changes: 32 additions & 0 deletions babel.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
//
// Copyright (c) 2023-2024 karamem0
//
// This software is released under the MIT License.
//
// https://github.com/karamem0/hitofude/blob/main/LICENSE
//

module.exports = {
'plugins': [
'@emotion/babel-plugin',
[
'formatjs',
{
'ast': true,
'idInterpolationPattern': '[sha512:contenthash:base64:6]'
}
]
],
'presets': [
[
'@babel/preset-env',
{
'targets': {
'node': 'current'
}
}
],
'@babel/preset-react',
'@babel/preset-typescript'
]
};
24 changes: 0 additions & 24 deletions babel.config.json

This file was deleted.

Loading

0 comments on commit f80a450

Please sign in to comment.