Commit 79f564d 1 parent 4c99b2e commit 79f564d Copy full SHA for 79f564d
File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
+ ## [ 3.2.4]
6
+ - Fixed issue related to rootURL in tests
7
+
5
8
## [ 3.2.3]
6
9
- Fixed issue with ember serve when script tags were duplicated after rebuilds
7
10
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ module.exports = class ConvertToAMD extends Filter {
123
123
indent_size : 2 ,
124
124
max_preserve_newlines : 1
125
125
} ) ;
126
- scriptsToLoad . push ( `"${ this . indexHtmlCaches [ relativePath ] . afterLoadingScript } "` ) ;
126
+ scriptsToLoad . push ( `"${ this . rootURL } ${ this . indexHtmlCaches [ relativePath ] . afterLoadingScript } "` ) ;
127
127
}
128
128
129
129
// Replace the original ember scripts by the amd ones
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ember-cli-amd" ,
3
- "version" : " 3.2.3 " ,
3
+ "version" : " 3.2.4 " ,
4
4
"description" : " Ember CLI Addon that can load AMD modules." ,
5
5
"scripts" : {
6
6
"build" : " ember build --environment=production" ,
You can’t perform that action at this time.
0 commit comments