Closed benogle closed 9 years ago
I can't see any $ , $$ or View in https://github.com/karan/atom-terminal/blob/master/lib/atom-terminal.coffee and that is the only code file we have.
The context menu CSON format was updated with in the last pull request.
Where are these errors / deprecations coming from?
It's coming from analytics. There may be some misattribution of package names going on. Sorry about this.
Atom will no longer load this package after June 1st without changes. There are a couple deprecations on the latest version (
0.8.0
) of this package:$
fromatom
is no longer supported. If you are usingspace-pen
, please require$
fromatom-space-pen-views
. Otherwise requirejquery
instead:{$} = require 'atom-space-pen-views'
or$ = require 'jquery'
Add"atom-space-pen-views": "^2.0.3"
to your package dependencies. Or add"jquery": "^2"
to your package dependencies.$$
fromatom
is no longer supported. Please requireatom-space-pen-views
instead:{$$} = require 'atom-space-pen-views'
Add"atom-space-pen-views": "^2.0.3"
to your package dependencies.View
fromatom
is no longer supported. Please requireatom-space-pen-views
instead:{View} = require 'atom-space-pen-views'
Add"atom-space-pen-views": "^2.0.3"
to your package dependencies.Visit https://gist.github.com/benogle/6d09e295c84b717ef9b4 and search for your package name to see up-to-date deprecations.
If this package has been replaced by another package or functionality in core, please reply with this information.
See https://github.com/atom/atom/issues/6867 for more info. Thanks!