Skip to content

Commit bb597ca

Browse files
tiagoloureirosrtab
authored andcommitted
fix @dipcode/prettier-config not being declared as dependency
1 parent 52b34df commit bb597ca

5 files changed

Lines changed: 22 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ jobs:
3333
node-version: ${{ matrix.node-version }}
3434
cache: 'npm'
3535
- name: Install dependencies
36-
run: |
37-
npm pkg delete scripts.prepare
38-
npm ci --omit=dev
36+
run: HUSKY=0 npm ci
3937
- name: Run tests
4038
run: npm run lint

.github/workflows/deploy.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ jobs:
2020
node-version: 'lts/*'
2121
cache: 'npm'
2222
registry-url: 'https://registry.npmjs.org'
23-
- run: |
24-
npm pkg delete scripts.prepare
25-
npm ci --omit=dev
23+
- run: HUSKY=0 npm ci
2624
- run: npm publish --access public
2725
env:
2826
NODE_AUTH_TOKEN: ${{ secrets.NPM_REGISTRY_TOKEN }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [v0.1.1] - 2024-01-23
9+
10+
### Fixed
11+
12+
- `@dipcode/prettier-config` not being declared as dependency.
13+
814
## [v0.1.0] - 2024-01-23
915

1016
- First release

package-lock.json

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,8 @@
3535
},
3636
"peerDependencies": {
3737
"prettier": "^3.0.0"
38+
},
39+
"dependencies": {
40+
"@dipcode/prettier-config": "^0.1.0"
3841
}
3942
}

0 commit comments

Comments
 (0)