Skip to content

Commit

Permalink
Merge b96530e into 3706c3f
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffijoe committed Mar 21, 2022
2 parents 3706c3f + b96530e commit a527a54
Show file tree
Hide file tree
Showing 9 changed files with 7,483 additions and 2,646 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -4,9 +4,9 @@ language: node_js
# Add additional versions here as appropriate.
node_js:
- 'stable'
- '16'
- '14'
- '12'
- '10'

# Lint errors should trigger a failure.
before_script: npm run lint
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,9 @@
# v0.9.0

- **BREAKING**: Bump Node version to 12.
- Update packages
- [#72](https://github.com/jeffijoe/typesync/issues/72): Add `--dry-fail` support ([#83](https://github.com/jeffijoe/typesync/pull/83), [@chelkyl](https://github.com/chelkyl))

# v0.8.0

- Update packages
Expand Down
7 changes: 5 additions & 2 deletions README.md
Expand Up @@ -35,9 +35,12 @@ Path is relative to the current working directory. If omitted, defaults to `pack

**Note**: `typesync` only modifies your `package.json` - you still need to run `npm install`, or — if drinking the k00laid — `yarn`.

## `--dry`
## `--dry[=fail]`

If `--dry` is specified, will not actually write to the file, it only prints added typings,
If `--dry` is specified, will not actually write to the file, it only prints added/removed typings.

The same is true for `--dry=fail`, with the additional effect of failing the command in case there are changes.
This is useful for CI scenarios.

## `--ignoredeps`

Expand Down

0 comments on commit a527a54

Please sign in to comment.