-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
46 lines (37 loc) · 1.55 KB
/
config.yml
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
#Url of the site to be proxied
URL: "https://www.lmmontgomery.ca"
#Root assets folder (contains /css/, /js/ etc)
ASSETS_DIR: "dist/assets"
#Path on server to remote assets folder (escape the slashes; no trailing slash)
#REMOTE_ASSETS_PATH: "www.lmmontgomery.ca/sites/www.lmmontgomery.ca/themes/lmmi_2015/dist/assets"
REMOTE_ASSETS_PATH: "https://www.lmmontgomery.ca/sites/lmmi.vre3.upei.ca/themes/lmmi_2015/dist/assets"
LOCALPROXY: "http://drupal7.dev/"
# Your project's server will run on localhost:xxxx at this port
PORT: 8000
# Autoprefixer will make sure your CSS works with these browsers
COMPATIBILITY:
- "last 2 versions"
- "ie >= 9"
- "ios >= 7"
# Gulp will reference these paths when it copies files
PATHS:
# Path to dist folder
dist: "dist"
# Paths to static assets that aren't images, CSS, or JavaScript
assets:
- "src/assets/**/*"
- "!src/assets/{img,js,scss}/**/*"
# Paths to Sass libraries, which can then be loaded with @import
scss:
- "src/assets/scss/lmmi-2015.styles.scss"
- "src/assets/scss/lmmi-2015.hacks.scss"
- "src/assets/scss/lmmi-2015.normalize.scss"
#- "src/assets/scss/layouts/lmmi-main/lmmi-main.layout.scss"
sass:
- "node_modules/bourbon/app/assets/stylesheets"
- "node_modules/bourbon-neat/app/assets/stylesheets"
- "node_modules/compass-mixins/lib"
#- "node_modules/motion-ui/src"
# Paths to JavaScript entry points for webpack to bundle modules
entries:
- "src/assets/js/app.js"