Browse Source

Merge branch 'pr/166'

master
Igor Zhukov 10 years ago
parent
commit
f80403235a
  1. 4
      app/app.manifest
  2. 4
      app/index.html
  3. 16
      gulpfile.js
  4. 3
      package.json

4
app/app.manifest

@ -0,0 +1,4 @@ @@ -0,0 +1,4 @@
CACHE MANIFEST
NETWORK:
*

4
app/index.html

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
<!doctype html>
<html lang="en" ng-app="myApp"><!-- ng-csp="" -->
<html lang="en" ng-app="myApp" manifest="app.manifest"><!-- ng-csp="" -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
@ -60,4 +60,4 @@ @@ -60,4 +60,4 @@
</body>
</html>
</html>

16
gulpfile.js

@ -111,17 +111,33 @@ gulp.task('disable-production', function() { @@ -111,17 +111,33 @@ gulp.task('disable-production', function() {
);
});
gulp.task('add-appcache-manifest', function() {
return gulp.src('./dist/**/*')
.pipe($.manifest({
timestamp: true,
network: ['http://*', 'https://*', '*'],
filename: 'app.manifest',
exclude: 'app.manifest'
}))
.pipe(gulp.dest('./dist'));
});
gulp.task('clean', function() {
return gulp.src(['dist/*', '!dist/.git']).pipe($.clean());
});
gulp.task('bump', ['update-version-manifests', 'update-version-settings', 'update-version-comments']);
gulp.task('build', ['templates', 'usemin', 'copy'], function () {
gulp.start('disable-production');
});
gulp.task('package', ['cleanup-dist']);
gulp.task('publish', ['build'], function() {
gulp.start('add-appcache-manifest');
});
gulp.task('default', ['clean'], function() {
gulp.start('build');
});

3
package.json

@ -31,6 +31,7 @@ @@ -31,6 +31,7 @@
"gulp-concat": "^2.1.7",
"gulp-grep-stream": "0.0.2",
"event-stream": "^3.1.0",
"gulp-zip": "^0.1.2"
"gulp-zip": "^0.1.2",
"gulp-manifest": "0.0.3"
}
}

Loading…
Cancel
Save