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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Erasmus <jerasmus@gitlab.com>2020-02-07 05:14:59 +0300
committerEvan Read <eread@gitlab.com>2020-02-07 05:14:59 +0300
commit654d129d594807e8ffd3cde05bd75b83e201f422 (patch)
treec0a708ede0c5b7d376a7cae4e2375ed385f3267e /rollup.config.js
parent590d7eb66699d45d0bc791884663fefe399f6852 (diff)
Move specs `spec/javascripts/` -> `specs/frontend/`
Moved specs from `spec/javascripts/` to `specs/frontend/`
Diffstat (limited to 'rollup.config.js')
-rw-r--r--rollup.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rollup.config.js b/rollup.config.js
index ed5ee25f..8ce95b44 100644
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -8,7 +8,7 @@ function mapDirectory(file) {
return file.replace('content/', 'public/');
}
-module.exports = glob.sync('content/frontend/bundles/*.js').map(file => ({
+module.exports = glob.sync('content/frontend/**/*.js').map(file => ({
input: file,
output: {
file: mapDirectory(file),