Skip to content

Commit 5f9d595

Browse files
author
Slinto
committed
Release v1.0.0
1 parent 436642a commit 5f9d595

38 files changed

Lines changed: 470 additions & 1913 deletions

.bowerrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory" : "client/js/bower_components"
3+
}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.DS_Store
22
bower_components/
3-
node_modules/
3+
node_modules/
4+
npm-debug.log

LICENSE

Lines changed: 0 additions & 21 deletions
This file was deleted.

README.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
# Slinto DevStack [![Dependency Status](https://david-dm.org/slinto/slinto-devstack.svg?style=flat)](https://david-dm.org/slinto/slinto-devstack) [![devDependency Status](https://david-dm.org/slinto/slinto-devstack/dev-status.svg?style=flat)](https://david-dm.org/slinto/slinto-devstack#info=devDependencies)
1+
# Slinto DevStack
2+
[![Dependency Status](https://david-dm.org/slinto/slinto.devstack.png)](https://david-dm.org/slinto/slinto.devstack)
3+
[![DevDependency Status](https://david-dm.org/slinto/slinto.devstack/dev-status.png)](https://david-dm.org/slinto/slinto.devstack#info=devDependencies)
24

35

46
Slinto DevStack is my simple automated DevStack for creating [Node.js](http://nodejs.org) apps including:
5-
- [Google Closure Tools (Library, Compiler)](https://developers.google.com/closure/)
7+
68
- [Express - web application framework for node](http://expressjs.com/)
9+
- [Webpack - Module bundler](http://webpack.github.io/)
710
- [Stylus — expressive, robust, feature-rich CSS preprocessor](http://learnboost.github.io/stylus/)
811
- [nib - CSS3 extensions for Stylus](http://visionmedia.github.io/nib/)
912
- [Jade - Template Engine](http://jade-lang.com/)
@@ -12,12 +15,11 @@ Slinto DevStack is my simple automated DevStack for creating [Node.js](http://no
1215
- [Mocha - test framework](http://mochajs.org/)
1316
- CSS3 Autoprefixer
1417
- Image minifier
15-
- JSHint
1618
- Livereloading (Good with [Google Chrome Extension](https://chrome.google.com/webstore/detail/livereload/jnihajbhpnppcggbcgedagnkighmdlei))
1719

1820

1921
## Prerequisites
20-
[Node.js](http://nodejs.org) && Java 1.7+
22+
[Node.js](http://nodejs.org)
2123
```
2224
npm install -g gulp
2325
npm install -g bower
@@ -38,7 +40,7 @@ npm install && bower install
3840
```
3941
gulp
4042
```
41-
Type `gulp` or `gulp server` and open localhost:3000 in your browser.
43+
Type `gulp` or `gulp server` and open localhost:8080 in your browser.
4244

4345
### Production build
4446
> Compilation of Stylus code, minifying CSS code, image minifying and run Google Closure Compiler.
@@ -47,6 +49,15 @@ Type `gulp` or `gulp server` and open localhost:3000 in your browser.
4749
gulp build
4850
```
4951

52+
### Release build
53+
> App building, version bump, commit and push to git repository.
54+
55+
```
56+
gulp release --version major|minor|patch
57+
or
58+
gulp release -v major|minor|patch
59+
```
60+
5061
### Error: spawn EMFILE on OSX
5162
Call `ulimit -n 10240` or `gulp set-ulimit`.
5263
For automatic setup on start, call `gulp server-ulimit` instead `gulp server`

bower.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
{
22
"name": "slinto-devstack",
3-
"version": "0.2.0",
4-
"private": true,
5-
"dependencies": {
6-
"closure-compiler": "http://dl.google.com/closure-compiler/compiler-latest.zip",
7-
"closure-library": "https://github.com/google/closure-library.git"
8-
}
3+
"version": "1.0.0",
4+
"dependencies": {}
95
}

build/css/app.css

Lines changed: 1 addition & 196 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)