UNPKG

2.55 kBMarkdownView Raw
1# Change Log
2All notable changes to this project will be documented in this file.
3This project adheres to [Semantic Versioning](http://semver.org/).
4
5## [2.0.2]
6- Improved compatibility with ember-auto-import
7 - Fixed issue where not all special characters were getting escaped during webpack eval modification
8 - Fixed issue where build would crash when trying to modify an eval expression without a string literal as the argument (i.e. a variable containing a string being passed to eval)
9
10## [2.0.1]
11- Small bug fix
12
13## [2.0.0]
14!!!Breaking changes!!
15- Removed unsued functionality
16- Support for excluding folders in build folder from being processed and converted
17
18## [1.2.3]
19- Fixed package.json
20
21## [1.2.2]
22- Support for tests and ember-cli-code-coverage (small issue fixed for coverage)
23
24## [1.2.1]
25- Support for tests and ember-cli-code-coverage
26
27## [1.2.0]
28- Update License from MIT to Apache-2.0
29
30## [1.1.2]
31- Small improvement for ember-cli-arcgis
32
33## [1.1.1]
34- Improved thw way AMD modules are discovered. Build time should be fatser.
35- Support for Engines and Addons.
36- amdModulePaths is not necessary anymore as the AMD modules are dicovered on the built code.
37
38## [1.0.0]
39- Based on Ember 2.18
40- Changed the way we find and replace the conflicting Ember require and define function/references. Instead of using a regex and replacing string occurences, we are now using esprima to replace Identifiers and Literals.
41
42## [0.4.9]
43- Add support for addons and custom amd module paths
44
45## [0.4.8]
46- Don't replace #define with #efineday
47- Add support for package main shorthand in module names
48- Fix type for `buildOutput` and update README.
49
50## [0.4.7]
51### Fix
52- Fix regular expression check for "require" in test loader
53
54## [0.4.6]
55### Fix
56- Fix esprima parsing issue for functions with parameters with a default value
57
58## [0.4.5]
59### Changed
60- Only scripts with src !== undefined are removed from the body. This allows us to put Google Analytics in the page or other json payloads
61
62## [0.4.4]
63### Added
64- support for inlining of scripts
65### Changed
66- if not inlined, the amd-start and amd-config scripts are fingerprinted to enable cache-busting
67- also ensured that other script tags in the body are not removed (i.e. google analytics)
68
69## [0.4.1]
70### Added
71- support for assets deployed to cdn. If `fingerprint.prepend` is defined in the consuming project's `ember-cli-build.js` file, the specified path will be prepended to the AMD asset urls. If not present, the standard root-relative path of `/assets/SCRIPTNAME.js` is used.