New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

flamebird

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flamebird - npm Package Compare versions

Comparing version 1.7.0 to 1.7.1

22

CHANGELOG.md
# Changelog
## [1.7.1] - 2018-05-13
### Fixed
- fixed webpack build after installing npm packages
## [1.7.0] - 2018-05-13
### Changed
- refactoring code in frontend part of application
- update styles for web application
### Fixed
- loosing colors in logs [18 issue](https://github.com/js2me/flamebird/issues/18)
- problems with running webpack-dev-server in flamebird [15 issue](https://github.com/js2me/flamebird/issues/15)
### Added
- `web` - added hotkeys button. Which helps task switching or tabs switching via keyboard
- `web` - added themes [default(white), dark, blue]
- `web` - added fullscreene button. Changes task runner window size
- `web` - webpack build
- `web` - create flamebird logo [16 issue](https://github.com/js2me/flamebird/issues/16)
- `web` - ability of the renaming values of the env variables [13 issue](https://github.com/js2me/flamebird/issues/13)
## [1.6.7] -

@@ -6,0 +28,0 @@

32

lib/app/main.js

@@ -84,18 +84,20 @@ /* global $, axios, _ , FileLoader, WebLogger, Keyboard, TaskList, createSpan */

var task = taskList.getTask(name)
taskList.setActive(task)
openedTask = name
// setActiveCommand(task)
logger.clear(true)
axios.get('/logs/' + task.name).then(function(response) {
logger.updateDescription(task.task)
logger.updateEnvs(task.envs)
var logs = ''
_.forEach(response.data, function(log, index) {
logs += logger.createHTMLLog(log)
if (task.name) {
taskList.setActive(task)
openedTask = name
// setActiveCommand(task)
logger.clear(true)
axios.get('/logs/' + task.name).then(function(response) {
logger.updateDescription(task.task)
logger.updateEnvs(task.envs)
var logs = ''
_.forEach(response.data, function(log, index) {
logs += logger.createHTMLLog(log)
})
setTimeout(function() {
logger.push(logs, true)
logger.scrollTo('bottom')
}, 0)
})
setTimeout(function() {
logger.push(logs, true)
logger.scrollTo('bottom')
}, 0)
})
}
}

@@ -102,0 +104,0 @@ }

@@ -1,4 +0,5 @@

/* global $, taskList, global, _ */
/* global $, taskList, _ */
window.Keyboard = (function() { //eslint-disable-line
var global = window.global
var isEnabled = false

@@ -5,0 +6,0 @@ var taskCharCodes = [

{
"name": "flamebird",
"version": "1.7.0",
"version": "1.7.1",
"description": "wonderful task manager for Procfile-based or npm-based applications",

@@ -9,3 +9,3 @@ "main": "flamebird.js",

"lint-js": "eslint .",
"postinstall": "webpack --config webpack.config.js"
"postinstall": "yarn webpack --config webpack.config.js"
},

@@ -51,4 +51,4 @@ "repository": {

"prettier": "1.10.2",
"webpack": "^4.8.2",
"webpack-cli": "^2.1.3"
"webpack": "4.8.2",
"webpack-cli": "2.1.3"
},

@@ -55,0 +55,0 @@ "directories": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc