Skip to content

Commit f6c881e

Browse files
committed
fix(Build): Handle -stable suffix for stable files
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.
1 parent 898ead7 commit f6c881e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

grunt/ngdocs.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ module.exports = {
77
waitEval: "(function() { var ret = true; try { angular.module('ui.grid'); } catch (e) { ret = false; } return ret; })()",
88
versions: {
99
stable: [
10-
{ src: '/release/<%= pkg.name %>.js', type: 'script' },
11-
{ src: '/release/<%= pkg.name %>.css', type: 'css' }
10+
{ src: '/release/<%= pkg.name %>-stable.js', type: 'script' },
11+
{ src: '/release/<%= pkg.name %>-stable.css', type: 'css' }
1212
],
1313
unstable: [
1414
{ src: '/release/<%= pkg.name %>-unstable.js', type: 'script' },

0 commit comments

Comments
 (0)