This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 3 files changed +5
-56
lines changed
3 files changed +5
-56
lines changed Original file line number Diff line number Diff line change @@ -181,8 +181,9 @@ angular.module('examples', [])
181
181
filePromises . push ( $http . get ( exampleFolder + '/' + filename , { transformResponse : [ ] } )
182
182
. then ( function ( response ) {
183
183
184
- // Plunkr needs an index file that's simply named index.html
185
- if ( filename === 'index-plnkr.html' ) {
184
+ // The manifests provide the production index file but Plunkr wants
185
+ // a straight index.html
186
+ if ( filename === 'index-production.html' ) {
186
187
filename = 'index.html' ;
187
188
}
188
189
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ module.exports = new Package('angularjs', [
23
23
. factory ( require ( './services/deployments/default' ) )
24
24
. factory ( require ( './services/deployments/jquery' ) )
25
25
. factory ( require ( './services/deployments/production' ) )
26
- . factory ( require ( './services/deployments/plnkr' ) )
27
26
28
27
. factory ( require ( './inline-tag-defs/type' ) )
29
28
@@ -151,8 +150,7 @@ module.exports = new Package('angularjs', [
151
150
generateProtractorTestsProcessor ,
152
151
generateExamplesProcessor ,
153
152
debugDeployment , defaultDeployment ,
154
- jqueryDeployment , productionDeployment ,
155
- plnkrDeployment ) {
153
+ jqueryDeployment , productionDeployment ) {
156
154
157
155
generateIndexPagesProcessor . deployments = [
158
156
debugDeployment ,
@@ -172,8 +170,7 @@ module.exports = new Package('angularjs', [
172
170
debugDeployment ,
173
171
defaultDeployment ,
174
172
jqueryDeployment ,
175
- productionDeployment ,
176
- plnkrDeployment
173
+ productionDeployment
177
174
] ;
178
175
} )
179
176
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments