ember-bunsen-core
Advanced tools
Comparing version 0.17.1 to 0.18.0
@@ -10,5 +10,5 @@ module.exports = { | ||
{name: 'ember-cli-moment-shim', target: '^2.0.0'}, | ||
{name: 'ember-lodash-shim', target: '^1.0.0'}, | ||
{name: 'ember-lodash-shim', target: '^1.2.0'}, | ||
{name: 'ember-seamless-immutable-shim', target: '^1.0.0'}, | ||
{name: 'ember-z-schema', target: '^2.0.0'} | ||
{name: 'ember-z-schema', target: '^2.2.0'} | ||
] | ||
@@ -15,0 +15,0 @@ }) |
@@ -0,1 +1,6 @@ | ||
# 0.18.0 | ||
* **Added** `ember-lodash-shim` configuration to optimize build to only include necessary `lodash` methods. | ||
# 0.17.1 | ||
@@ -2,0 +7,0 @@ |
{ | ||
"name": "ember-bunsen-core", | ||
"version": "0.17.1", | ||
"version": "0.18.0", | ||
"description": "Core bunsen library for Ember apps", | ||
@@ -42,3 +42,3 @@ "directories": { | ||
"ember-load-initializers": "0.6.3", | ||
"ember-lodash-shim": "^1.1.1", | ||
"ember-lodash-shim": "^1.2.0", | ||
"ember-resolver": "^2.1.1", | ||
@@ -48,3 +48,3 @@ "ember-seamless-immutable-shim": "^1.1.1", | ||
"ember-validator-shim": "^2.1.1", | ||
"ember-z-schema": "^2.1.1", | ||
"ember-z-schema": "^2.2.0", | ||
"eslint": "^3.14.0", | ||
@@ -70,3 +70,42 @@ "eslint-config-frost-standard": "^5.3.2", | ||
"configPath": "tests/dummy/config" | ||
}, | ||
"ember-lodash-shim": { | ||
"includes": [ | ||
"assign", | ||
"capitalize", | ||
"chain", | ||
"clone", | ||
"cloneDeep", | ||
"defaults", | ||
"difference", | ||
"every", | ||
"find", | ||
"forEach", | ||
"forIn", | ||
"get", | ||
"groupBy", | ||
"includes", | ||
"isEmpty", | ||
"isNumber", | ||
"isObject", | ||
"isPlainObject", | ||
"isString", | ||
"last", | ||
"map", | ||
"mapKeys", | ||
"mapValues", | ||
"partial", | ||
"pick", | ||
"pickBy", | ||
"reduce", | ||
"size", | ||
"some", | ||
"startCase", | ||
"transform", | ||
"uniq", | ||
"without" | ||
], | ||
"includeLodash3Exports": false, | ||
"whitelist": true | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17401