Coder Social home page Coder Social logo

jmc-88 / grunt-appcache Goto Github PK

View Code? Open in Web Editor NEW
26.0 4.0 9.0 1.53 MB

Grunt task for generating an HTML5 AppCache manifest.

Home Page: https://www.npmjs.com/package/grunt-appcache

License: MIT License

JavaScript 100.00%
appcache manifest grunt-task grunt-plugins nodejs npm-package html5

grunt-appcache's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

grunt-appcache's Issues

Cannot read property 'revision' of undefined

got this error when i first used this plugin. Problem is that:

var original = appcache.readManifest(output); 

gives false as result since no manfiest file is present first time around (i think)

simple fix would be to replace:

manifest.version.revision = (1 + original.version.revision);

to

if (original !== false) {
    manifest.version.revision = (1 + original.version.revision);
} else {
    manifest.version.revision = 1;
}

allow for excluding filter

It'd be nice if the arrays would support the same features like the standard grunt array format. Namely I'd like to do this:

cache: [
  'dist/*.js',
  '!dist/shouldNotBeCached.*.js',
],

Is there a way to achieve that today that I missed?

Add custom paths to CACHE: section

I'd like to set the cache: option like this

cache: [
  'www/*.js',
  'www/*.css',
  '/'
],

And would expect the result to look like this

CACHE MANIFEST
# rev 1 - 2014-06-18T18:37:59.432Z

CACHE:
app.js
app.css
/

Is there a way to achieve that?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.