-
Notifications
You must be signed in to change notification settings - Fork 0
/
sip.options.js
50 lines (38 loc) · 1.29 KB
/
sip.options.js
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
/*
|----------------------------------------------------------------
| Sip Options
|----------------------------------------------------------------
|
| To configure sip edit this file.
|
*/
var options = {
// Base directory for your resource.
assetsDir: './resources/assets/',
// Base directory for your compiled/minified assets.
publicDir: './public/assets/',
// Directory for your unprocessed scss files relative to the resources directory.
scssDir: 'scss/',
// Directory for your styles.css relative to the public directory.
cssDir: 'css/',
// Directory for your javascript files relative to the resources directory.
jsSrcDir: 'js/',
// Directory for your concatenated app.js relative to the public directory.
jsDir: 'js/',
// File names for the unprocessed files.
mainScssInput: 'styles.scss',
mainJsInput: 'main.js',
// File names for the processed/concatenated/minified files.
scssOutput: 'styles.css',
scssMinifiedOutput: 'styles.min.css',
jsConcatOutput: 'app.js',
jsUglifiedOutput: 'app.min.js',
/**
* Files to watch for changes an trigger a reload.
* (scssOutput and jsConcatOutput are watched by default)
*/
filesToWatch: [
'./resources/**/*.php'
]
};
module.exports = options;