Skip to content

Commit

Permalink
Moved index page to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Patotski committed Jun 12, 2017
1 parent c374ba6 commit 237696e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ var gulp = require('gulp');
var inlinesource = require('gulp-inline-source');

gulp.task('build', function () {
return gulp.src('./page.html')
return gulp.src('./src/index.html')
.pipe(inlinesource({
compress: false
}))
.pipe(gulp.dest('./site'));
.pipe(gulp.dest('./docs'));
});
4 changes: 2 additions & 2 deletions page.html → src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ <h4>Output</h4>
<p>Copyright 2017 <a href="https://github.com/ppatotski/app-localizer">github.com</a> - All Rights Reserved.</p>
</footer>

<script type="text/javascript" src="/node_modules/intl-messageformat-parser/dist/parser.js" inline></script>
<script type="text/javascript" src="/localizer.js" inline></script>
<script type="text/javascript" src="../node_modules/intl-messageformat-parser/dist/parser.js" inline></script>
<script type="text/javascript" src="../localizer.js" inline></script>
<script type="text/javascript">
'use strict';
const inputElement = document.getElementById('input');
Expand Down

0 comments on commit 237696e

Please sign in to comment.