Skip to content

Commit

Permalink
Fix missing dist
Browse files Browse the repository at this point in the history
  • Loading branch information
sineverba committed Feb 23, 2023
1 parent 4fa9418 commit 93dbf31
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .semaphore/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,7 @@ blocks:
- name: Deploy to NPM
commands:
- checkout
- npm ci
- npm run build
- mv npmrc.txt .npmrc
- npm publish
2 changes: 2 additions & 0 deletions .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ blocks:
- npm run test

- name: Coverage
skip:
when: "tag =~ '.*'"
task:
prologue:
commands:
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# 1.3.0
# 1.3.1
+ Fix missing dist

## 1.3.0
+ Upgrade dependencies
+ Move to TypeScript

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shortfield",
"version": "1.3.0",
"version": "1.3.1",
"description": "Make short a long string, concatenated with three dots",
"main": "index.js",
"repository": {
Expand Down Expand Up @@ -34,6 +34,6 @@
"typescript": "^4.9.5"
},
"files": [
"lib/**/*"
"dist/**/*"
]
}
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sonar.projectKey=npm-pkg-shortfield
sonar.projectVersion=1.3.0
sonar.projectVersion=1.3.1
sonar.organization=sineverba
sonar.sources=src
sonar.exclusions=**/node_modules/**,src/__tests__/**
Expand Down

0 comments on commit 93dbf31

Please sign in to comment.