Socket
Socket
Sign inDemoInstall

@microsoft/sp-lodash-subset

Package Overview
Dependencies
Maintainers
1
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@microsoft/sp-lodash-subset - npm Package Compare versions

Comparing version 0.5.1 to 0.6.1

CHANGELOG.json

49

CHANGELOG.md

@@ -1,37 +0,40 @@

> ## Overview
> We break changes into three categories (following [semver](http://semver.org/)), corresponding to the types of version
> bumps we may make:
> - **`PATCH`** A patch change should be released when a backwards-compatible bugfix is made.
> - **`MINOR`** A minor change should be released when functionality is added, but backwards-compatibility is maintained.
> - **`MAJOR`** A major change should be released whenever backwards compatibility is broken.
>
> Whenver a change is made to this project, a brief description of the change should be included in this file under the
> **Unreleased changes** heading with an annotation tagging the change. When the package is released, all of the
> changes listed under **Unreleased changes** will be moved under a heading for the new version.
>
> Example changes:
> ## Unreleased changes
> - `PATCH` Fixing a minor style issue where a textbox can overlap with its label.
> - `MAJOR` Changing the interface of `BaseClientSideWebPart.onInit()` to be async.
> - `MINOR` Including new performance logging functions.
> - `PATCH` Correctly handling negative numbers in the `setZIndex` function.
# Change Log - @microsoft/sp-lodash-subset
# 0.5.1
This log was last generated on Tue, 03 Jan 2017 22:53:56 GMT and should not be manually modified.
## 0.6.1
Tue, 03 Jan 2017 21:52:49 GMT
### Patches
- More changes for RC0 release.
## 0.6.0
Tue, 06 Dec 2016 20:44:26 GMT
### Minor changes
- Changes for RC0 release.
## 0.5.1
*Changes not tracked*
# 0.4.0
## 0.4.0
- `MINOR` Use TypeScript 2.0
### Minor changes
# 0.3.0
- Use TypeScript 2.0
## 0.3.0
*Changes not tracked*
# 0.2.0
## 0.2.0
*Changes not tracked*
# 0.1.8
## 0.1.8
*Initial release*

@@ -5,3 +5,3 @@ {

"componentType": "Library",
"version": "0.0.1",
"version": "0.6.1",
"manifestVersion": 2,

@@ -15,3 +15,3 @@ "loaderConfig": {

"sp-lodash-subset": {
"type": "internal",
"type": "path",
"path": "dist/sp-lodash-subset.js"

@@ -18,0 +18,0 @@ }

@@ -1,32 +0,34 @@

declare const camelCase: typeof _.camelCase;
declare const chunk: typeof _.chunk;
declare const clone: typeof _.clone;
declare const cloneDeep: typeof _.cloneDeep;
declare const constant: typeof _.constant;
declare const difference: typeof _.difference;
declare const each: typeof _.each;
declare const extend: typeof _.extend;
declare const escape: typeof _.escape;
declare const findIndex: typeof _.findIndex;
declare const flatten: typeof _.flatten;
declare const forIn: typeof _.forIn;
declare const get: typeof _.get;
declare const has: typeof _.get;
declare const isElement: typeof _.isElement;
declare const isEqual: typeof _.isEqual;
declare const keys: typeof _.keys;
declare const merge: typeof _.merge;
declare const noop: typeof _.noop;
declare const once: typeof _.once;
declare const random: typeof _.random;
declare const round: typeof _.round;
declare const sortBy: typeof _.sortBy;
declare const sumBy: typeof _.sumBy;
declare const times: typeof _.times;
declare const trimEnd: typeof _.trimEnd;
declare const truncate: typeof _.truncate;
declare const unescape: typeof _.unescape;
declare const uniq: typeof _.uniq;
declare const update: typeof _.update;
declare const without: typeof _.without;
export { camelCase, chunk, clone, cloneDeep, constant, difference, each, extend, escape, findIndex, flatten, forIn, get, has, isElement, isEqual, keys, merge, noop, once, random, round, sortBy, sumBy, times, trimEnd, truncate, unescape, uniq, update, without };
import camelCase = require('lodash/camelCase');
import chunk = require('lodash/chunk');
import clone = require('lodash/clone');
import cloneDeep = require('lodash/cloneDeep');
import constant = require('lodash/constant');
import difference = require('lodash/difference');
import each = require('lodash/each');
import extend = require('lodash/extend');
import escape = require('lodash/escape');
import findIndex = require('lodash/findIndex');
import flatten = require('lodash/flatten');
import forIn = require('lodash/forIn');
import get = require('lodash/get');
import has = require('lodash/has');
import invert = require('lodash/invert');
import isElement = require('lodash/isElement');
import isEqual = require('lodash/isEqual');
import keys = require('lodash/keys');
import merge = require('lodash/merge');
import noop = require('lodash/noop');
import once = require('lodash/once');
import random = require('lodash/random');
import round = require('lodash/round');
import set = require('lodash/set');
import sortBy = require('lodash/sortBy');
import sumBy = require('lodash/sumBy');
import times = require('lodash/times');
import trimEnd = require('lodash/trimEnd');
import truncate = require('lodash/truncate');
import unescape = require('lodash/unescape');
import uniq = require('lodash/uniq');
import update = require('lodash/update');
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 };

@@ -30,2 +30,4 @@ "use strict";

exports.has = has;
var invert = require('lodash/invert');
exports.invert = invert;
var isElement = require('lodash/isElement');

@@ -47,2 +49,4 @@ exports.isElement = isElement;

exports.round = round;
var set = require('lodash/set');
exports.set = set;
var sortBy = require('lodash/sortBy');

@@ -66,3 +70,1 @@ exports.sortBy = sortBy;

exports.without = without;
//# sourceMappingURL=index.js.map
{
"name": "@microsoft/sp-lodash-subset",
"version": "0.5.1",
"version": "0.6.1",
"description": "Essential lodash functions for SharePoint",

@@ -13,9 +13,11 @@ "license": "SEE LICENSE IN LICENSE.docx",

"dependencies": {
"lodash": "~4.15.0"
"lodash": "~4.15.0",
"@types/lodash": ">=4.14.38 <4.16.0",
"@types/webpack-env": ">=1.12.1 <1.14.0"
},
"scripts": {
"build": "gulp bundle",
"clean": "gulp nuke",
"clean": "gulp clean",
"test": "gulp bundle"
}
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc