Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
move nvrf pdf file
Browse files Browse the repository at this point in the history
  • Loading branch information
rayestrada committed Nov 28, 2023
1 parent fd7d3bf commit 621efcb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public/
content/registrar
layouts/registrar
content/*/*/data
content/*/*/files

tmp/

Expand Down
6 changes: 3 additions & 3 deletions gulp/nvrf.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ var gulp = require('gulp');
var log = require('fancy-log');
var colors = require('ansi-colors');

var destPagePath = 'nvrf-test';

gulp.task('nvrf-assets', function () {
var stream = gulp.src([
'./node_modules/vote-gov-nvrf-app/dist/assets/*'
Expand All @@ -16,13 +18,11 @@ gulp.task('nvrf-files', function () {
'./node_modules/vote-gov-nvrf-app/dist/files/*'
]);

return stream.pipe(gulp.dest('./static/assets/nvrf/files'));
return stream.pipe(gulp.dest(`./content/en/${destPagePath}/files`));

});

gulp.task('nvrf-data', function () {
var destPagePath = 'nvrf-test';

var stream = gulp.src([
'./node_modules/vote-gov-nvrf-app/dist/data/**/*'
]);
Expand Down

0 comments on commit 621efcb

Please sign in to comment.