-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.probuild.yaml
26 lines (22 loc) · 1023 Bytes
/
.probuild.yaml
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
target-dir: "/path/to/build"
clean: true #Removes current content from the target directory
clean-exceptions: #Files or directories that should be kept during cleaning (local to target-dir)
- "path/to/file"
- "path/to/directory/"
link-dir-paths: #List of directories to hard link into target directory
- "/path/to/dir1"
- "/path/to/dir2"
copy-dir-paths: #List of directories to copy into target directory
- "path/to/dir3"
- "path/to/dir4"
composer: true #Should composer be run
update: false #If true, composer update will be run. If false, composer install will be run.
no-dev: false #Should composer be run with --no-dev
post-composer-dir-paths: #List of directories to symlink into target directory after running composer
- "/post/composer/path1"
- "/post/composer/path2"
grunt: true #Should grunt be run
grunt-tasks:
- "task1"
- "task2"
- "task3"