Skip to content

Commit

Permalink
Merge pull request #29 from Diaszano/fix/WorkflowDeploy
Browse files Browse the repository at this point in the history
Fix/workflow deploy
  • Loading branch information
Diaszano authored Dec 4, 2023
2 parents 573627d + e86bf89 commit d62c157
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 17 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ on:
push:
branches:
- main
workflow_run:
workflows: ["Run Tests", "Code Quality Check"]
types:
- completed

jobs:
npm_deploy:
Expand All @@ -34,9 +30,6 @@ jobs:
- name: Build Project
run: npm run build

- name: Generate Documentation
run: npm run build:docs

- name: Publish to NPM
run: npm publish
env:
Expand Down
24 changes: 15 additions & 9 deletions .npmignore
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@
"test": "vitest"
},
"types": "dist/linketrack.d.ts",
"version": "1.2.1"
"version": "1.2.4"
}

0 comments on commit d62c157

Please sign in to comment.