Skip to content

Commit

Permalink
Fix chalk import in kacl.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Ted Janeczko committed Aug 25, 2018
1 parent b9f6e58 commit c1c7e53
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Fixed

- Fixed chalk import in `kacl.js`

## [0.1.2] - 2018-08-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion kacl.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node

const { chalk } = require('chalk');
const chalk = require('chalk');
const { init, lint, release } = require('./src');

function run () {
Expand Down

0 comments on commit c1c7e53

Please sign in to comment.