mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
Merge branch 'master' into mb-ns-mitigate-leaks
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
Copyright (c) 2011-2016 GitHub Inc.
|
||||
Copyright (c) 2011-2017 GitHub Inc.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
|
||||
@@ -70,6 +70,7 @@
|
||||
| [Oniguruma](https://github.com/atom/node-oniguruma) | [](https://travis-ci.org/atom/node-oniguruma) | [](https://ci.appveyor.com/project/Atom/node-oniguruma/branch/master) | [](https://david-dm.org/atom/node-oniguruma) |
|
||||
| [PathWatcher](https://github.com/atom/node-pathwatcher) | [](https://travis-ci.org/atom/node-pathwatcher) | [](https://ci.appveyor.com/project/Atom/node-pathwatcher) | [](https://david-dm.org/atom/node-pathwatcher) |
|
||||
| [Property Accessors](https://github.com/atom/property-accessors) | [](https://travis-ci.org/atom/property-accessors) | [](https://ci.appveyor.com/project/Atom/property-accessors/branch/master) | [](https://david-dm.org/atom/property-accessors) |
|
||||
| [Season](https://github.com/atom/season) | [](https://travis-ci.org/atom/season) | [](https://ci.appveyor.com/project/Atom/season) | [](https://david-dm.org/atom/season) |
|
||||
| [TextBuffer](https://github.com/atom/text-buffer) | [](https://travis-ci.org/atom/text-buffer) | [](https://ci.appveyor.com/project/Atom/text-buffer/branch/master) | [](https://david-dm.org/atom/text-buffer) |
|
||||
| [Underscore-Plus](https://github.com/atom/underscore-plus) | [](https://travis-ci.org/atom/underscore-plus) | [](https://ci.appveyor.com/project/Atom/underscore-plus/branch/master) | [](https://david-dm.org/atom/underscore-plus) |
|
||||
|
||||
|
||||
16
package.json
16
package.json
@@ -124,23 +124,23 @@
|
||||
"symbols-view": "0.114.0",
|
||||
"tabs": "0.103.1",
|
||||
"timecop": "0.33.2",
|
||||
"tree-view": "0.211.1",
|
||||
"tree-view": "0.212.0",
|
||||
"update-package-dependencies": "0.10.0",
|
||||
"welcome": "0.35.2",
|
||||
"whitespace": "0.36.1",
|
||||
"wrap-guide": "0.39.0",
|
||||
"language-c": "0.54.0",
|
||||
"language-c": "0.54.1",
|
||||
"language-clojure": "0.22.1",
|
||||
"language-coffee-script": "0.48.2",
|
||||
"language-csharp": "0.13.0",
|
||||
"language-csharp": "0.14.0",
|
||||
"language-css": "0.41.0",
|
||||
"language-gfm": "0.88.0",
|
||||
"language-git": "0.19.0",
|
||||
"language-go": "0.43.0",
|
||||
"language-html": "0.47.1",
|
||||
"language-hyperlink": "0.16.1",
|
||||
"language-java": "0.24.0",
|
||||
"language-javascript": "0.124.0",
|
||||
"language-java": "0.25.0",
|
||||
"language-javascript": "0.125.1",
|
||||
"language-json": "0.18.3",
|
||||
"language-less": "0.30.0",
|
||||
"language-make": "0.22.3",
|
||||
@@ -150,17 +150,17 @@
|
||||
"language-php": "0.37.3",
|
||||
"language-property-list": "0.9.0",
|
||||
"language-python": "0.45.1",
|
||||
"language-ruby": "0.70.3",
|
||||
"language-ruby": "0.70.4",
|
||||
"language-ruby-on-rails": "0.25.1",
|
||||
"language-sass": "0.57.1",
|
||||
"language-shellscript": "0.24.0",
|
||||
"language-source": "0.9.0",
|
||||
"language-sql": "0.25.1",
|
||||
"language-sql": "0.25.2",
|
||||
"language-text": "0.7.1",
|
||||
"language-todo": "0.29.1",
|
||||
"language-toml": "0.18.1",
|
||||
"language-xml": "0.34.13",
|
||||
"language-yaml": "0.27.1"
|
||||
"language-yaml": "0.27.2"
|
||||
},
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
||||
@@ -79,7 +79,7 @@ export default class BufferedProcess {
|
||||
}
|
||||
|
||||
// The command itself is quoted if it contains spaces, &, ^ or | chars
|
||||
cmdArgs.unshift(/\s|&|\^|\|/.test(command) ? `\"${command}\"` : command)
|
||||
cmdArgs.unshift(/\s|&|\^|\(|\)|\|/.test(command) ? `\"${command}\"` : command)
|
||||
|
||||
const cmdOptions = _.clone(options)
|
||||
cmdOptions.windowsVerbatimArguments = true
|
||||
|
||||
Reference in New Issue
Block a user