Skip to content

Commit c301ac7

Browse files
updated with #14 pull request
1 parent 97a5263 commit c301ac7

File tree

4 files changed

+86
-3
lines changed

4 files changed

+86
-3
lines changed

_generated_2018_01_16_at_20_17_34.py renamed to _generated_2018_01_17_at_02_32_47.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from shutil import copyfile
44
from threading import Timer
55

6-
PLUGIN_VERSION = "0.13.2"
6+
PLUGIN_VERSION = "0.13.11"
77

88
PACKAGE_PATH = os.path.abspath(os.path.dirname(__file__))
99
PACKAGE_NAME = os.path.basename(PACKAGE_PATH)

changelog/0.13.11.txt

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
v0.13.11
2+
3+
## Improvements
4+
5+
- #14 Pull request
6+
7+
8+
9+
=================================================================
10+
** THIS PLUGIN IS IN BETA! Thanks for your support in advance! **
11+
=================================================================
12+
13+
If you like it, remember to star it ⭐ on GitHub: https://github.com/pichillilorenzo/JavaScriptEnhancements
14+
15+
** USAGE **
16+
===========
17+
18+
See how it works on the Wiki: 👉👉 https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki 👈👈
19+
20+
21+
** WHAT IS THIS? **
22+
===================
23+
24+
This plugin uses Flow (javascript static type checker from Facebook) under the hood.
25+
26+
It offers better javascript autocomplete and a lot of features about creating,
27+
developing and managing javascript projects, such as:
28+
29+
- Cordova projects (run cordova emulate, build, compile, serve, etc. directly from Sublime Text!)
30+
- Ionic v1 and v2 projects (same as Cordova projects!)
31+
- Angular v1 and v2 projects
32+
- React projects (only about the creation for the moment)
33+
- React Native projects (only about the creation for the moment. I will add also NativeScript support)
34+
- Express projects (only about the creation for the moment)
35+
- Yeoman generators
36+
- Local bookmarks project
37+
- JavaScript real-time errors
38+
- etc.
39+
40+
You could use it also in existing projects (see the Wiki - https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki/Using-it-with-an-existing-project)!
41+
42+
It turns Sublime Text into a JavaScript IDE like!
43+
44+
This project is based on my other Sublime Text plugin JavaScript Completions (https://github.com/pichillilorenzo/JavaScript-Completions)
45+
46+
** NOTE **
47+
If you want use this plugin, you may want uninstall/disable the JavaScript Completions plugin, if installed.
48+
49+
** OS SUPPORTED NOW **
50+
======================
51+
52+
👉 Linux (64-bit)
53+
👉 Mac OS X
54+
👉 Windows (64-bit): released without the use of TerminalView plugin. For each feature (like also creating a project) will be used the cmd.exe shell (so during the creation of a project don't close it until it finishes!). Unfortunately the TerminalView plugin supports only Linux-based OS 😞. Has someone any advice or idea about that? Is there something similar to the TerminalView plugin for Windows?? Thanks!
55+
56+
❗❗ Dependencies ❗❗
57+
=======================
58+
59+
In order to work properly, this plugin has some dependencies:
60+
61+
👉 Sublime Text 3 (build 3124 or newer)
62+
👉 Node.js and npm (https://nodejs.org or nvm (https://github.com/creationix/nvm))
63+
👉 TerminalView (only for Linux and Mac OS X) sublime text plugin (https://github.com/Wramberg/TerminalView)
64+
65+
Not required, but useful for typescript files (Flow wont work on this type of files):
66+
67+
👉 TypeScript sublime text plugin (https://github.com/Microsoft/TypeScript-Sublime-Plugin)
68+
69+
** Flow Requirements **
70+
=======================
71+
72+
It use [Flow](https://github.com/facebook/flow) for type checking and auto-completions.
73+
74+
👉 Mac OS X
75+
👉 Linux (64-bit)
76+
👉 Windows (64-bit)
77+
78+
Email me for any questions or doubts about this new project on: pichillilorenzo@gmail.com
79+
80+
Thanks for your support! 😄😄
81+
82+
MIT License

make/_init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from shutil import copyfile
44
from threading import Timer
55

6-
PLUGIN_VERSION = "0.13.2"
6+
PLUGIN_VERSION = "0.13.11"
77

88
PACKAGE_PATH = os.path.abspath(os.path.dirname(__file__))
99
PACKAGE_NAME = os.path.basename(PACKAGE_PATH)

messages.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
"0.11.1": "changelog/0.11.1.txt",
1111
"0.11.11": "changelog/0.11.11.txt",
1212
"0.13.0": "changelog/0.13.0.txt",
13-
"0.13.1": "changelog/0.13.1.txt"
13+
"0.13.1": "changelog/0.13.1.txt",
14+
"0.13.11": "changelog/0.13.11.txt"
1415
}

0 commit comments

Comments
 (0)