From 2cf5df858fa90ba2fcd45c2906b3bbdec705e40e Mon Sep 17 00:00:00 2001 From: Ben Ogle Date: Tue, 6 Jan 2015 13:49:39 -0800 Subject: [PATCH] Be more clear about the export from atom-space-pen-views --- docs/upgrading/upgrading-your-package.md | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/docs/upgrading/upgrading-your-package.md b/docs/upgrading/upgrading-your-package.md index 85d7d6086..eb91c23aa 100644 --- a/docs/upgrading/upgrading-your-package.md +++ b/docs/upgrading/upgrading-your-package.md @@ -95,32 +95,12 @@ class SomeView extends View #... ``` -Requiring `atom` _used to_ provide the following view helpers: - -``` -$ -$$ -$$$ -View -TextEditorView -ScrollView -SelectListView -``` - ### The New -Atom no longer provides these view helpers baked in. Atom core is now 'view agnostic'. The preexisting view system is available from two npm packages: `space-pen`, and `atom-space-pen-views` +`require 'atom'` no longer provides view helpers or jQuery. Atom core is now 'view agnostic'. The preexisting view system is available from a new npm package: `atom-space-pen-views`. -`space-pen` now provides +`atom-space-pen-views` now provides jQuery, `space-pen` views, plus Atom specific views: -``` -$ -$$ -$$$ -View -``` - -`atom-space-pen-views` now provides all of `space-pen`, plus Atom specific views: ```js // Passed through from space-pen