Skip to content

Commit

Permalink
fix(Build): Handle -stable suffix for stable files
Browse files Browse the repository at this point in the history
The build process creates -unstable and -stable suffixes on the built
files in the main ui-grid.info repo under the release dir. The docs app
was not set up to use -stable and was breaking.
  • Loading branch information
c0bra committed Jul 17, 2015
1 parent 898ead7 commit f6c881e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grunt/ngdocs.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ module.exports = {
waitEval: "(function() { var ret = true; try { angular.module('ui.grid'); } catch (e) { ret = false; } return ret; })()",
versions: {
stable: [
{ src: '/release/<%= pkg.name %>.js', type: 'script' },
{ src: '/release/<%= pkg.name %>.css', type: 'css' }
{ src: '/release/<%= pkg.name %>-stable.js', type: 'script' },
{ src: '/release/<%= pkg.name %>-stable.css', type: 'css' }
],
unstable: [
{ src: '/release/<%= pkg.name %>-unstable.js', type: 'script' },
Expand Down

0 comments on commit f6c881e

Please sign in to comment.