Merge pull request #1142 from atom/ks-remove-fs-shims

Remove fs-plus shims
This commit is contained in:
Kevin Sawicki
2013-11-20 18:26:09 -08:00
2 changed files with 8 additions and 18 deletions

View File

@@ -70,7 +70,7 @@
"atom-dark-syntax": "0.6.0",
"base16-tomorrow-dark-theme": "0.6.0",
"solarized-dark-syntax": "0.4.0",
"archive-view": "0.13.0",
"archive-view": "0.14.0",
"autocomplete": "0.15.0",
"autoflow": "0.7.0",
"autosave": "0.7.0",
@@ -81,10 +81,10 @@
"dev-live-reload": "0.16.0",
"editor-stats": "0.6.0",
"exception-reporting": "0.7.0",
"find-and-replace": "0.46.0",
"fuzzy-finder": "0.23.0",
"find-and-replace": "0.47.0",
"fuzzy-finder": "0.24.0",
"gists": "0.8.0",
"git-diff": "0.15.0",
"git-diff": "0.16.0",
"github-sign-in": "0.10.0",
"go-to-line": "0.8.0",
"grammar-selector": "0.10.0",
@@ -93,19 +93,19 @@
"link": "0.8.0",
"markdown-preview": "0.19.0",
"metrics": "0.12.0",
"package-generator": "0.20.0",
"package-generator": "0.21.0",
"release-notes": "0.12.0",
"settings-view": "0.46.0",
"snippets": "0.15.0",
"spell-check": "0.14.0",
"status-bar": "0.21.0",
"status-bar": "0.22.0",
"styleguide": "0.12.0",
"symbols-view": "0.22.0",
"symbols-view": "0.23.0",
"tabs": "0.10.0",
"terminal": "0.18.0",
"timecop": "0.10.0",
"to-the-hubs": "0.12.0",
"tree-view": "0.35.0",
"tree-view": "0.37.0",
"visual-bell": "0.4.0",
"whitespace": "0.9.0",
"wrap-guide": "0.6.0",

View File

@@ -1,13 +1,3 @@
#TODO remove once all packages have been updated
fs = require 'fs-plus'
fs.exists = fs.existsSync
fs.makeTree = fs.makeTreeSync
fs.move = fs.moveSync
fs.read = (filePath) -> fs.readFileSync(filePath, 'utf8')
fs.remove = fs.removeSync
fs.write = fs.writeFile
fs.writeSync = fs.writeFileSync
fs = require 'fs-plus'
{$} = require './space-pen-extensions'
_ = require 'underscore-plus'