-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.md.incomplete
99 lines (65 loc) · 2.01 KB
/
README.md.incomplete
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Laravel 4 Asset Management - Beta
**feedback appreciated**
## Contents
- [Overview](#Overview)
- [Installation](#Installation)
- [Configuration](#Configuration)
- [Usage](#Usage)
- [Contributors](#Contributors)
### Overview
Boom is a Laravel 4 package that aims to ease the development of frontend code.
### Installation
1. Install node.js from
2. Add the following to your composer.json `"require-dev"` array
`"breadam/boom": "dev-master"`
3. Add the following to your app/config/app.php `"providers"` array
`"Breadam\Boom\BoomServiceProvider"`
4. Update composer
`composer update`
### Configuration
1. Publish config file: `php artisan config:publish breadam/boom`
2. Publish templates: `php artisan view:publish breadam/boom`
#### Options
##### boom
Path to boom folder. Contains package.json, bower.json and gulpfile.js files. Npm and Bower packages will be installed under this directory.
default: app_path() / boom
##### source
Path to source folder. Your fronted code goes here.
default: app_path() / assets
##### target
Path to target folder. Compiled code goes here.
default: public_path() / assets
#### Assets
-- Coming soon --
#### boom:generate
Generates package.json, bower.json, gulpfile.js, base.css, base.scss, base.less files.
Options:
--overwrite, --o
--npm
--bower
--gulp
--css
--scss
--less
#### boom:install
Install Npm and Bower dependencies.
Options:
--npm
--bower
#### boom:update
Update Npm and Bower dependencies.
Options:
--npm
--bower
#### boom:build
Compile/Build frontend code
Options:
--js
--coffee
--css
--scss
--less
#### boom:watch
Watch for changes in source files and build automatically on change.
### Contributors
- breadam : [Github](https://github.com/breadam) | [Twitter](https://twitter.com/breadam) | [Facebook](https://facebook.com/breadam) | [LinkedIn](http://www.linkedin.com/in/breadam)