-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from Diaszano/fix/WorkflowDeploy
Fix/workflow deploy
- Loading branch information
Showing
3 changed files
with
16 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,34 @@ | ||
# Diretórios de configuração do VSCode | ||
# Visual Studio Code and WebStorm Configuration | ||
.vscode/ | ||
|
||
# Configurações específicas do WebStorm | ||
.idea/ | ||
|
||
# Arquivos e diretórios do sistema | ||
# System Files and Directories | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# Arquivos de configuração local | ||
# Local Configuration Files | ||
.env | ||
.env.local | ||
.env.*.local | ||
|
||
# Arquivos TypeScript e diretórios de origem | ||
# TypeScript Source Code | ||
src/ | ||
*.ts | ||
*.tsx | ||
|
||
# Diretório de saída do TypeScript | ||
# Compiled JavaScript | ||
dist/ | ||
|
||
# Arquivos de teste | ||
# Test Files | ||
test/ | ||
*.spec.ts | ||
*.test.ts | ||
*.test.tsx | ||
|
||
# Development and Configuration Files | ||
.github | ||
.husky | ||
docs | ||
.eslintrc.json | ||
.lintstagedrc.json | ||
.prettierrc.json | ||
tsconfig.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,5 +55,5 @@ | |
"test": "vitest" | ||
}, | ||
"types": "dist/linketrack.d.ts", | ||
"version": "1.2.1" | ||
"version": "1.2.4" | ||
} |