@microsoft/sp-lodash-subset
Advanced tools
Comparing version 0.6.1 to 1.0.0
@@ -5,2 +5,42 @@ { | ||
{ | ||
"version": "1.0.0", | ||
"tag": "@microsoft/sp-lodash-subset_v1.0.0", | ||
"date": "Fri, 17 Feb 2017 23:09:23 GMT", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"comment": "Locked version numbers for @types packages" | ||
}, | ||
{ | ||
"comment": "Updated .npmignore" | ||
}, | ||
{ | ||
"comment": "Enabled strictNullChecks compiler flag." | ||
} | ||
], | ||
"minor": [ | ||
{ | ||
"comment": "Exported lodash.assign" | ||
}, | ||
{ | ||
"comment": "Exported lodash.debounce" | ||
}, | ||
{ | ||
"comment": "Exported lodash.isEmpty" | ||
}, | ||
{ | ||
"comment": "Exported lodash.toArray" | ||
}, | ||
{ | ||
"comment": "Exported throttle API of lodash" | ||
} | ||
], | ||
"major": [ | ||
{ | ||
"comment": "General availability" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"version": "0.6.1", | ||
@@ -7,0 +47,0 @@ "tag": "@microsoft/sp-lodash-subset_v0.6.1", |
# Change Log - @microsoft/sp-lodash-subset | ||
This log was last generated on Tue, 03 Jan 2017 22:53:56 GMT and should not be manually modified. | ||
This log was last generated on Wed, 22 Feb 2017 21:38:53 GMT and should not be manually modified. | ||
## 1.0.0 | ||
Fri, 17 Feb 2017 23:09:23 GMT | ||
### Breaking changes | ||
- General availability | ||
### Minor changes | ||
- Exported lodash.assign | ||
- Exported lodash.debounce | ||
- Exported lodash.isEmpty | ||
- Exported lodash.toArray | ||
- Exported throttle API of lodash | ||
### Patches | ||
- Locked version numbers for @types packages | ||
- Updated .npmignore | ||
- Enabled strictNullChecks compiler flag. | ||
## 0.6.1 | ||
@@ -6,0 +27,0 @@ Tue, 03 Jan 2017 21:52:49 GMT |
@@ -5,3 +5,3 @@ { | ||
"componentType": "Library", | ||
"version": "0.6.1", | ||
"version": "1.0.0", | ||
"manifestVersion": 2, | ||
@@ -8,0 +8,0 @@ "loaderConfig": { |
{ | ||
"kind": "package", | ||
"summary": [], | ||
"remarks": [], | ||
"exports": {} | ||
} |
@@ -0,1 +1,2 @@ | ||
import assign = require('lodash/assign'); | ||
import camelCase = require('lodash/camelCase'); | ||
@@ -6,2 +7,3 @@ import chunk = require('lodash/chunk'); | ||
import constant = require('lodash/constant'); | ||
import debounce = require('lodash/debounce'); | ||
import difference = require('lodash/difference'); | ||
@@ -18,2 +20,3 @@ import each = require('lodash/each'); | ||
import isElement = require('lodash/isElement'); | ||
import isEmpty = require('lodash/isEmpty'); | ||
import isEqual = require('lodash/isEqual'); | ||
@@ -29,3 +32,5 @@ import keys = require('lodash/keys'); | ||
import sumBy = require('lodash/sumBy'); | ||
import throttle = require('lodash/throttle'); | ||
import times = require('lodash/times'); | ||
import toArray = require('lodash/toArray'); | ||
import trimEnd = require('lodash/trimEnd'); | ||
@@ -37,2 +42,2 @@ import truncate = require('lodash/truncate'); | ||
import without = require('lodash/without'); | ||
export { camelCase, chunk, clone, cloneDeep, constant, difference, each, extend, escape, findIndex, flatten, forIn, get, has, invert, isElement, isEqual, keys, merge, noop, once, random, round, set, sortBy, sumBy, times, trimEnd, truncate, unescape, uniq, update, without }; | ||
export { assign, camelCase, chunk, clone, cloneDeep, constant, debounce, difference, each, extend, escape, findIndex, flatten, forIn, get, has, invert, isElement, isEmpty, isEqual, keys, merge, noop, once, random, round, set, sortBy, sumBy, throttle, times, toArray, trimEnd, truncate, unescape, uniq, update, without }; |
"use strict"; | ||
var camelCase = require('lodash/camelCase'); | ||
var assign = require("lodash/assign"); | ||
exports.assign = assign; | ||
var camelCase = require("lodash/camelCase"); | ||
exports.camelCase = camelCase; | ||
var chunk = require('lodash/chunk'); | ||
var chunk = require("lodash/chunk"); | ||
exports.chunk = chunk; | ||
var clone = require('lodash/clone'); | ||
var clone = require("lodash/clone"); | ||
exports.clone = clone; | ||
var cloneDeep = require('lodash/cloneDeep'); | ||
var cloneDeep = require("lodash/cloneDeep"); | ||
exports.cloneDeep = cloneDeep; | ||
var constant = require('lodash/constant'); | ||
var constant = require("lodash/constant"); | ||
exports.constant = constant; | ||
var difference = require('lodash/difference'); | ||
var debounce = require("lodash/debounce"); | ||
exports.debounce = debounce; | ||
var difference = require("lodash/difference"); | ||
exports.difference = difference; | ||
var each = require('lodash/each'); | ||
var each = require("lodash/each"); | ||
exports.each = each; | ||
var extend = require('lodash/extend'); | ||
var extend = require("lodash/extend"); | ||
exports.extend = extend; | ||
var escape = require('lodash/escape'); | ||
var escape = require("lodash/escape"); | ||
exports.escape = escape; | ||
var findIndex = require('lodash/findIndex'); | ||
var findIndex = require("lodash/findIndex"); | ||
exports.findIndex = findIndex; | ||
var flatten = require('lodash/flatten'); | ||
var flatten = require("lodash/flatten"); | ||
exports.flatten = flatten; | ||
var forIn = require('lodash/forIn'); | ||
var forIn = require("lodash/forIn"); | ||
exports.forIn = forIn; | ||
var get = require('lodash/get'); | ||
var get = require("lodash/get"); | ||
exports.get = get; | ||
var has = require('lodash/has'); | ||
var has = require("lodash/has"); | ||
exports.has = has; | ||
var invert = require('lodash/invert'); | ||
var invert = require("lodash/invert"); | ||
exports.invert = invert; | ||
var isElement = require('lodash/isElement'); | ||
var isElement = require("lodash/isElement"); | ||
exports.isElement = isElement; | ||
var isEqual = require('lodash/isEqual'); | ||
var isEmpty = require("lodash/isEmpty"); | ||
exports.isEmpty = isEmpty; | ||
var isEqual = require("lodash/isEqual"); | ||
exports.isEqual = isEqual; | ||
var keys = require('lodash/keys'); | ||
var keys = require("lodash/keys"); | ||
exports.keys = keys; | ||
var merge = require('lodash/merge'); | ||
var merge = require("lodash/merge"); | ||
exports.merge = merge; | ||
var noop = require('lodash/noop'); | ||
var noop = require("lodash/noop"); | ||
exports.noop = noop; | ||
var once = require('lodash/once'); | ||
var once = require("lodash/once"); | ||
exports.once = once; | ||
var random = require('lodash/random'); | ||
var random = require("lodash/random"); | ||
exports.random = random; | ||
var round = require('lodash/round'); | ||
var round = require("lodash/round"); | ||
exports.round = round; | ||
var set = require('lodash/set'); | ||
var set = require("lodash/set"); | ||
exports.set = set; | ||
var sortBy = require('lodash/sortBy'); | ||
var sortBy = require("lodash/sortBy"); | ||
exports.sortBy = sortBy; | ||
var sumBy = require('lodash/sumBy'); | ||
var sumBy = require("lodash/sumBy"); | ||
exports.sumBy = sumBy; | ||
var times = require('lodash/times'); | ||
var throttle = require("lodash/throttle"); | ||
exports.throttle = throttle; | ||
var times = require("lodash/times"); | ||
exports.times = times; | ||
var trimEnd = require('lodash/trimEnd'); | ||
var toArray = require("lodash/toArray"); | ||
exports.toArray = toArray; | ||
var trimEnd = require("lodash/trimEnd"); | ||
exports.trimEnd = trimEnd; | ||
var truncate = require('lodash/truncate'); | ||
var truncate = require("lodash/truncate"); | ||
exports.truncate = truncate; | ||
var unescape = require('lodash/unescape'); | ||
var unescape = require("lodash/unescape"); | ||
exports.unescape = unescape; | ||
var uniq = require('lodash/uniq'); | ||
var uniq = require("lodash/uniq"); | ||
exports.uniq = uniq; | ||
var update = require('lodash/update'); | ||
var update = require("lodash/update"); | ||
exports.update = update; | ||
var without = require('lodash/without'); | ||
var without = require("lodash/without"); | ||
exports.without = without; |
{ | ||
"name": "@microsoft/sp-lodash-subset", | ||
"version": "0.6.1", | ||
"version": "1.0.0", | ||
"description": "Essential lodash functions for SharePoint", | ||
"license": "SEE LICENSE IN LICENSE.docx", | ||
"license": "SEE LICENSE IN \"EULA\" FOLDER", | ||
"homepage": "http://aka.ms/spfx", | ||
"main": "lib/index.js", | ||
"typings": "lib/index.d.ts", | ||
"devDependencies": { | ||
"@ms/sp-build-internal-web": "~0.5.0", | ||
"@ms/sp-build-internal-web": "~0.5.3", | ||
"gulp": "~3.9.1" | ||
@@ -14,4 +15,4 @@ }, | ||
"lodash": "~4.15.0", | ||
"@types/lodash": ">=4.14.38 <4.16.0", | ||
"@types/webpack-env": ">=1.12.1 <1.14.0" | ||
"@types/lodash": "4.14.52", | ||
"@types/webpack-env": "1.13.0" | ||
}, | ||
@@ -18,0 +19,0 @@ "scripts": { |
@@ -7,7 +7,6 @@ # sp-lodash-subset | ||
*This package is part of the [SharePoint Framework](https://github.com/SharePoint/sp-dev-docs/wiki), | ||
*This package is part of the [SharePoint Framework](http://aka.ms/spfx), | ||
which is a collection of NPM packages that empower developers to create client-side experiences | ||
for [Microsoft SharePoint](https://products.office.com/en-us/sharepoint/collaboration). | ||
The SharePoint Framework is currently in Preview, and is subject to change based on customer feedback. | ||
For more information, including API documentation and code samples, please visit the | ||
[SharePoint Framework Developer Preview](https://github.com/SharePoint/sp-dev-docs/wiki) web site.* | ||
For more information, including complete API documentation and code samples, please visit | ||
the [SharePoint Framework](http://aka.ms/spfx) web site.* |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
2276180
64
7844
0
12
+ Added@types/lodash@4.14.52(transitive)
+ Added@types/webpack-env@1.13.0(transitive)
- Removed@types/lodash@4.14.202(transitive)
- Removed@types/webpack-env@1.13.9(transitive)
Updated@types/lodash@4.14.52
Updated@types/webpack-env@1.13.0