Skip to content

Commit 5743d00

Browse files
committed
chore(Dev): Remove -stable suffix from compiled files
It was preventing the local dev environment from working
1 parent a8db0cd commit 5743d00

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

grunt/ngdocs.js

Lines changed: 2 additions & 2 deletions
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 %>-stable.js', type: 'script' },
11-
{ src: '/release/<%= pkg.name %>-stable.css', type: 'css' }
10+
{ src: '/release/<%= pkg.name %>.js', type: 'script' },
11+
{ src: '/release/<%= pkg.name %>.css', type: 'css' }
1212
],
1313
unstable: [
1414
{ src: '/release/<%= pkg.name %>-unstable.js', type: 'script' },

lib/grunt/plugins.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ module.exports = function(grunt) {
175175
grunt.task.requires(['build']);
176176

177177
var options = this.options({
178-
stableSuffix: '-stable',
178+
stableSuffix: '',
179179
unstableSuffix: '-unstable',
180180
cleanup: false
181181
});

0 commit comments

Comments
 (0)