I have several projects with shared files, so I created a directory for them source/shared. The file structure looks like this:
.
βββ config.rb
βββ build
βββ source
β βββ project-1
β β βββ index.html.slim
β β βββ js
β β β βββ _templates.js.coffee
β β β βββ main.js.coffee
β β βββ layouts
β β β βββ layout.slim
β βββ project-2
β β βββ index.html.slim
β β βββ js
β β β βββ _templates.js.coffee
β β β βββ main.js.coffee
β β βββ layouts
β β β βββ layout.slim
β βββ shared
β βββ js
β βββ vendor
β β βββ _json2.js
β β βββ html5shiv.js
Here I want to source/shared/js/vendor/html5shiv.jsbe in the assembly directory, for example main.js script.
When I create project-1, the build directory looks like this:
build
βββ index.html
βββ js
β βββ main-088a2c74.js
And with all this, can I somehow include common files in the assembly?
source
share