Skip to content

Commit

Permalink
2.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
JayCanuck committed Jan 31, 2019
2 parents a6d3803 + 05e03b4 commit af3aebf
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 52 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.1.0 (January 31, 2019)
* Added support for parsing `forceCSSModules` Enact project option.
* Fixed `framework` mixin generating correct module IDs when a symlinked Enact framework is used as the source.

## 2.0.1 (November 6, 2018)
* Fixed `EnactFrameworkRefPlugin` for Webpack 4 dll format and the latest HtmlWebpackPlugin
* Fixed dynamic setting `ILIB_BASE_PATH` for `EnactFrameworkRefPlugin`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Resolves the active package root path and metadata.
Unless otherwise specified, all content, including all source code files and
documentation files in this repository are:

Copyright (c) 2016-2018 LG Electronics
Copyright (c) 2016-2019 LG Electronics

Unless otherwise specified or set forth in the NOTICE file, all content,
including all source code files and documentation files in this repository are:
Expand All @@ -54,4 +54,4 @@ Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
2 changes: 2 additions & 0 deletions mixins/framework.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ module.exports = {
config.output.libraryTarget = 'umd';
config.output.globalObject = 'this';

config.resolve.symlinks = false;

// Modify the iLib plugin options to skip './resources' detection/generation
const ilibPlugin = helper.getPluginByName(config, 'ILibPlugin');
if (ilibPlugin) {
Expand Down
3 changes: 3 additions & 0 deletions option-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ const config = {
config.deep = enact.deep;
// Proxy target to use within the http-proxy-middleware during serving.
config.proxy = enact.proxy || pkg.meta.proxy;
// Optionally force all LESS/CSS to be handled modularly, instead of solely having
// the *.module.css and *.module.less files be processed in a modular context.
config.forceCSSModules = enact.forceCSSModules;
// Optional theme preset for theme-specific settings (see below).
config.theme = enact.theme;

Expand Down
99 changes: 53 additions & 46 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enact/dev-utils",
"version": "2.0.1",
"version": "2.1.0",
"description": "A collection of development utilities for Enact apps.",
"main": "index.js",
"author": "Jason Robitaille <jason.robitaille@lge.com>",
Expand Down Expand Up @@ -38,19 +38,19 @@
"find-cache-dir": "^2.0.0",
"glob": "^7.1.3",
"graceful-fs": "^4.1.11",
"import-fresh": "^2.0.0",
"import-fresh": "^3.0.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-is": "^16.4.2",
"react-reconciler": "^0.15.0",
"react-reconciler": "^0.18.0",
"react-test-renderer": "^16.4.2",
"tapable": "^1.1.0",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-sources": "^1.2.0"
},
"devDependencies": {
"eslint": "^5.4.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"prettier": "^1.14.2",
Expand Down

0 comments on commit af3aebf

Please sign in to comment.