UNPKG

2.17 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.0]
6!!!Breaking changes!!
7- Removed unsued functionality
8- Support for excluding folders in build folder from being processed and converted
9
10## [1.2.3]
11- Fixed package.json
12
13## [1.2.2]
14- Support for tests and ember-cli-code-coverage (small issue fixed for coverage)
15
16## [1.2.1]
17- Support for tests and ember-cli-code-coverage
18
19## [1.2.0]
20- Update License from MIT to Apache-2.0
21
22## [1.1.2]
23- Small improvement for ember-cli-arcgis
24
25## [1.1.1]
26- Improved thw way AMD modules are discovered. Build time should be fatser.
27- Support for Engines and Addons.
28- amdModulePaths is not necessary anymore as the AMD modules are dicovered on the built code.
29
30## [1.0.0]
31- Based on Ember 2.18
32- 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.
33
34## [0.4.9]
35- Add support for addons and custom amd module paths
36
37## [0.4.8]
38- Don't replace #define with #efineday
39- Add support for package main shorthand in module names
40- Fix type for `buildOutput` and update README.
41
42## [0.4.7]
43### Fix
44- Fix regular expression check for "require" in test loader
45
46## [0.4.6]
47### Fix
48- Fix esprima parsing issue for functions with parameters with a default value
49
50## [0.4.5]
51### Changed
52- Only scripts with src !== undefined are removed from the body. This allows us to put Google Analytics in the page or other json payloads
53
54## [0.4.4]
55### Added
56- support for inlining of scripts
57### Changed
58- if not inlined, the amd-start and amd-config scripts are fingerprinted to enable cache-busting
59- also ensured that other script tags in the body are not removed (i.e. google analytics)
60
61## [0.4.1]
62### Added
63- 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.