Skip to content

Commit

Permalink
bump version, improve code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsum committed Jan 23, 2017
1 parent d47f3d1 commit f136611
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## Changelog

#### 1.0.12
- Remove unuseable lines of code
- Update dependencies
- Improve test coverage

#### 1.0.11
- Add failure messages if application build was crashed
2 changes: 1 addition & 1 deletion cli/commands/compilers/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ ServerCompiler.prototype.start = function(devScreen) {
case 'info':
case 'error':
utils.log( logsBlock, `${msg.type.toUpperCase()}: ${utils.logFormat(data)}`, messageTypesColors[msg.type] );
break;
break;

case 'active-worker-usage': {
let memoryBoxContent = [
Expand Down
1 change: 0 additions & 1 deletion cli/commands/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ const cmd = function(program, config) {
null, // no callback
true // is sync
);

} catch (err) {
logger('Failed', 'red');
return false;
Expand Down
3 changes: 1 addition & 2 deletions cli/commands/subcommands/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
// ======================
const colors = require('colors');
const webpack = require('webpack');
const childProcess = require('child_process');
const logger = require('../../libs/logger');
const utils = require('../utils');

Expand Down Expand Up @@ -55,7 +54,7 @@ module.exports = function(program, config = {}) {
// lets send user notice
logger('SHIP: Start compiling');
logger('SHIP: Remove old files', 'green');

// prepare folders for compiling
utils.exec(`rm -rf ${dir}/dist`, { cwd: cwd }, null, true);
utils.exec(`mkdir ${dir}/dist`, { cwd: cwd }, null, true);
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rship",
"version": "1.0.11",
"version": "1.0.12",
"description": "Ecosystem for building isomorphic web applications",
"main": "./cli/index.js",
"bin": {
Expand Down Expand Up @@ -33,18 +33,18 @@
"blessed": "0.1.81",
"colors": "1.1.2",
"commander": "2.9.0",
"memory-fs": "^0.4.1",
"nodejs-websocket": "^1.7.1",
"webpack": "^1.14.0",
"memory-fs": "0.4.1",
"nodejs-websocket": "1.7.1",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2",
"yarn": "^0.19.1"
"yarn": "0.19.1"
},
"devDependencies": {
"chai": "3.5.0",
"codeclimate-test-reporter": "0.4.0",
"eslint-config-rambler": "^0.2.6",
"eslint-config-rambler": "0.2.6",
"istanbul": "0.4.5",
"mocha": "^3.2.0",
"sinon": "^1.17.7"
"mocha": "3.2.0",
"sinon": "1.17.7"
}
}

0 comments on commit f136611

Please sign in to comment.