Atom will no longer load this package after June 1st without changes. There are a couple deprecations on the latest version (0.7.0) of this package:
- Store package style sheets in the
styles/ directory instead of stylesheets/ in the <pack-name> package
- The context menu CSON format has changed. Please see https://atom.io/docs/api/latest/ContextMenuManager#context-menu-cson-format for more info.
- Use
activationCommands instead of activationEvents in your package.json Commands should be grouped by selector as follows: json "activationCommands": { "atom-workspace": ["foo:bar", "foo:baz"], "atom-text-editor": ["foo:quux"] }
- Use a config schema instead. See the configuration section of https://atom.io/docs/latest/hacking-atom-package-word-count and https://atom.io/docs/api/latest/Config for more details
- Requiring
$ from atom is no longer supported. If you are using space-pen, please require $ from atom-space-pen-views. Otherwise require jquery 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.
- Requiring
$$ from atom is no longer supported. Please require atom-space-pen-views instead: {$$} = require 'atom-space-pen-views' Add "atom-space-pen-views": "^2.0.3" to your package dependencies.
- Requiring
EditorView from atom is no longer supported. Please require TextEditorView from atom-space-pen-view instead: {TextEditorView} = require 'atom-space-pen-views' Add "atom-space-pen-views": "^2.0.3" to your package dependencies.
- Requiring
View from atom is no longer supported. Please require atom-space-pen-views instead: {View} = require 'atom-space-pen-views' Add "atom-space-pen-views": "^2.0.3" to your package dependencies.
- atom.workspaceView is no longer available. In most cases you will not need the view. See the Workspace docs for alternatives: https://atom.io/docs/api/latest/Workspace. If you do need the view, please use
atom.views.getView(atom.workspace), which returns an HTMLElement.
- Use ::getPaths instead
- Use TextBuffer::onDidChange instead
- Use TextEditor::setPlaceholderText instead. eg. editorView.getModel().setPlaceholderText(text)
Visit https://gist.github.com/benogle/6d09e295c84b717ef9b4 and search for your package name to see what deprecations are being reported on this package.
See atom/atom#6867 for more info.
Atom will no longer load this package after June 1st without changes. There are a couple deprecations on the latest version (
0.7.0) of this package:styles/directory instead ofstylesheets/in the<pack-name>packageactivationCommandsinstead ofactivationEventsin your package.json Commands should be grouped by selector as follows:json "activationCommands": { "atom-workspace": ["foo:bar", "foo:baz"], "atom-text-editor": ["foo:quux"] }$fromatomis no longer supported. If you are usingspace-pen, please require$fromatom-space-pen-views. Otherwise requirejqueryinstead:{$} = 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.$$fromatomis no longer supported. Please requireatom-space-pen-viewsinstead:{$$} = require 'atom-space-pen-views'Add"atom-space-pen-views": "^2.0.3"to your package dependencies.EditorViewfromatomis no longer supported. Please requireTextEditorViewfromatom-space-pen-viewinstead:{TextEditorView} = require 'atom-space-pen-views'Add"atom-space-pen-views": "^2.0.3"to your package dependencies.Viewfromatomis no longer supported. Please requireatom-space-pen-viewsinstead:{View} = require 'atom-space-pen-views'Add"atom-space-pen-views": "^2.0.3"to your package dependencies.atom.views.getView(atom.workspace), which returns an HTMLElement.Visit https://gist.github.com/benogle/6d09e295c84b717ef9b4 and search for your package name to see what deprecations are being reported on this package.
See atom/atom#6867 for more info.