Skip to content
This repository has been archived by the owner on Sep 6, 2022. It is now read-only.

Commit

Permalink
Replace picturefill.json with package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-engel committed Feb 5, 2016
1 parent e923f22 commit 61fd732
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
// Project configuration.
grunt.initConfig({
// Metadata.
pkg: pkg = grunt.file.readJSON("picturefill.json"),
banner: "/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - " +
pkg: pkg = grunt.file.readJSON("package.json"),
banner: "/*! <%= pkg.name %> - v<%= pkg.version %> - " +
"<%= grunt.template.today('yyyy-mm-dd') %>\n" +
"<%= pkg.homepage ? ' * ' + pkg.homepage + '\\n' : '' %>" +
" * Copyright (c) <%= grunt.template.today('yyyy') %> <%= pkg.author.name %>;" +
" Licensed <%= _.pluck(pkg.licenses, 'type').join(', ') %>\n */\n",
" * Copyright (c) <%= grunt.template.today('yyyy') %> https://github.com/scottjehl/picturefill/blob/master/Authors.txt;" +
" Licensed <%= pkg.license %>\n */\n",
// Task configuration.
clean: {
files: [ "dist" ]
Expand Down

0 comments on commit 61fd732

Please sign in to comment.