Welcome to mirror list, hosted at ThFree Co, Russian Federation.

config.toml « dependencies - github.com/google/docsy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3ba31f38f9fbcb7cbf21dc5221fcb16aa55754ac (plain)
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
[module]
_merge = "deep"
# work around https://github.com/golang/go/issues/37397
[[module.mounts]]
  source = "assets/bootstrap/scss/_vendor"
  target = "assets/vendor/bootstrap/scss/vendor"
# mount asserts directory
[[module.mounts]]
  source = "assets"
  target = "assets"
# mount i18n directory
[[module.mounts]]
  source = "i18n"
  target = "i18n"
# mount layouts directory
[[module.mounts]]
  source = "layouts"
  target = "layouts"
# mount static directory
[[module.mounts]]
  source = "static"
  target = "static"
# Dependencies are brought in as modules
# and mount points are declared
[[module.imports]]
  path = "github.com/twbs/bootstrap"
  disable = false
[[module.imports.mounts]]
  source = "scss"
  target = "assets/vendor/bootstrap/scss"
[[module.imports.mounts]]
  source = "dist/js"
  target = "assets/vendor/bootstrap/dist/js"
[[module.imports]]
  path = "github.com/FortAwesome/Font-Awesome"
  disable = false
[[module.imports.mounts]]
  source = "scss"
  target = "assets/vendor/Font-Awesome/scss"
[[module.imports.mounts]]
  source = "webfonts"
  target = "static/webfonts"