Skip to content

Commit

Permalink
Bump to version 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
debba committed Jun 21, 2022
1 parent 9812338 commit cc5bbda
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions bin/less2scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node

"use strict";
const commander = require('commander');
const {commander} = require('commander');
const version = require('../package.json').version;
const less2scss = require('../index.js');

Expand All @@ -16,7 +16,7 @@ commander

const exec = () => {
const opts = commander.opts();
if (opts.src){
if (opts.src) {

const src = opts.src,
dst = opts.dst,
Expand All @@ -25,8 +25,7 @@ const exec = () => {

less2scss(src, dst, recursive, exclude);

}
else {
} else {
commander.outputHelp();
}
};
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "less2scss",
"version": "1.5.0",
"version": "1.6.0",
"description": "This utility quickly converts all your less files to scss.",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit cc5bbda

Please sign in to comment.