Skip to content

Commit

Permalink
rename slides directory
Browse files Browse the repository at this point in the history
  • Loading branch information
seriousManual committed Aug 11, 2015
1 parent 5954367 commit 245872f
Show file tree
Hide file tree
Showing 39 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .gitignore
@@ -1,6 +1,6 @@
.idea
node_modules
bower_components
frontend/presentation/reveal
frontend/presentation/img/*.uas
frontend/slides/reveal
frontend/slides/img/*.uas
frontend/script
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
8 changes: 4 additions & 4 deletions gulpfile.js
Expand Up @@ -9,7 +9,7 @@ var gutil = require('gulp-util');

var SOURCE_DIR = 'src';
var BUILD_TARGET_DIR = 'frontend/script';
var REVEAL_TARGET_DIR = 'frontend/presentation/reveal';
var REVEAL_TARGET_DIR = 'frontend/slides/reveal';

gulp.task('clean', function (callback) {
rimraf(BUILD_TARGET_DIR, function (error) {
Expand Down Expand Up @@ -41,7 +41,7 @@ gulp.task('libscripts', ['bower_components'], function () {
.pipe(gulp.dest(BUILD_TARGET_DIR));
});

////////////////////////////////////////////////////// presentation //////////////////////////////////////////////////
////////////////////////////////////////////////////// slides //////////////////////////////////////////////////

gulp.task('reveal', ['libscripts'], function () {
return gulp.src('bower_components/reveal.js/**')
Expand All @@ -56,7 +56,7 @@ gulp.task('staticserve', function (callback) {
.listen(port, function(error) {
if (error) throw new Error(error);

console.log('static server running, visit http://localhost:' + port + '/presentation/presentation.html');
console.log('static server running, visit http://localhost:' + port + '/slides/slides.html');

callback();
});
Expand All @@ -76,7 +76,7 @@ gulp.task('build', function (callback) {
build(callback);
});

gulp.task('presentation', function (callback) {
gulp.task('slides', function (callback) {
sequence('build', 'staticserve', callback);
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -7,7 +7,7 @@
"build": "node ./node_modules/gulp/bin/gulp.js build",
"dev": "node ./node_modules/gulp/bin/gulp.js dev",
"setup": "npm i && npm prune && npm outdated --depth=0",
"presentation": "node ./node_modules/gulp/bin/gulp.js presentation"
"slides": "node ./node_modules/gulp/bin/gulp.js slides"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 245872f

Please sign in to comment.