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

atomable

Package Overview
Dependencies
Maintainers
2
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

atomable - npm Package Compare versions

Comparing version 1.0.0-beta.16 to 1.0.0-beta.17

3

ember-cli/lib/commands/help.js

@@ -6,3 +6,2 @@ 'use strict';

var stringUtils = require('ember-cli-string-utils');
var assign = require('lodash/assign');

@@ -79,3 +78,3 @@ var RootCommand = require('../models/command');

this.project.eachAddonCommand(function (addonName, commands) {
assign(this.commands, commands);
Object.assign(this.commands, commands);
}.bind(this));

@@ -82,0 +81,0 @@ }

@@ -16,3 +16,2 @@ 'use strict';

var logger = require('heimdalljs-logger')('ember-cli:command');
var WatchDetector = require('../models/watch-detector');
var SilentError = require('silent-error');

@@ -225,21 +224,3 @@ var execSync = require('child_process').execSync;

var detector = new WatchDetector({
ui: this.ui,
childProcess: { execSync: execSync },
fs: fs,
watchmanSupportsPlatform: /^win/.test(process.platform),
cache: cache,
root: this.project.root
});
var options = commandOptions.options;
if (this.hasOption('watcher')) {
// do stuff to try and provide a good experience when it comes to file watching
var watchPreference = detector.findBestWatcherOption(options);
this.project._watchmanInfo = watchPreference.watchmanInfo;
options.watcher = watchPreference.watcher;
}
resolve(this.run(options, commandOptions.args));
resolve(this.run(commandOptions.options, commandOptions.args));
}.bind(this));

@@ -246,0 +227,0 @@ },

@@ -27,3 +27,2 @@ /*

const cli = require('./ember-cli/lib/cli');
const Watcher = require('./ember-cli/lib/models/watcher');
const path = require('path');

@@ -34,9 +33,2 @@

module.exports = (options) => {
// patch Watcher to always default to node, not checking for Watchman
Watcher.detectWatcher = (ui, _options) => {
const options = _options || {}; // eslint-disable-line
options.watcher = 'node';
return Promise.resolve(options);
};
options.cli = { // eslint-disable-line

@@ -43,0 +35,0 @@ name: 'atomable',

{
"name": "atomable",
"version": "1.0.0-beta.16",
"version": "1.0.0-beta.17",
"description": "Serverless Microservice Framework",

@@ -31,2 +31,7 @@ "main": "index.js",

"babel-runtime": "6.18.0",
"broccoli-concat": "^3.0.5",
"broccoli-es6modules": "^1.2.3",
"broccoli-funnel": "^1.0.9",
"broccoli-merge-trees": "^1.1.4",
"broccoli-source": "^1.1.0",
"chalk": "1.1.3",

@@ -46,3 +51,5 @@ "configstore": "^2.1.0",

"git-repo-info": "^1.3.1",
"glob": "^7.1.1",
"heimdalljs-logger": "^0.1.7",
"inquirer": "^1.2.2",
"is-git-url": "^0.2.3",

@@ -60,2 +67,3 @@ "js-yaml": "3.6.1",

"resolve": "1.1.7",
"rsvp": "^3.3.3",
"semver": "^5.3.0",

@@ -65,2 +73,4 @@ "serverless": "https://github.com/pre63/serverless",

"source-map-loader": "0.1.5",
"through": "^2.3.8",
"walk-sync": "^0.3.1",
"webpack": "1.13.3",

@@ -67,0 +77,0 @@ "yam": "^0.0.22"

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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