@roots/container
Advanced tools
Comparing version 3.2.0-next.0 to 4.0.0
"use strict"; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Container = void 0; | ||
const lodash_1 = __importDefault(require("lodash")); | ||
const tslib_1 = require("tslib"); | ||
const lodash_1 = tslib_1.__importDefault(require("lodash")); | ||
/** | ||
@@ -9,0 +7,0 @@ * @roots/container |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Container = void 0; | ||
var Container_1 = require("./Container"); | ||
Object.defineProperty(exports, "Container", { enumerable: true, get: function () { return Container_1.Container; } }); | ||
var index_1 = require("./Container/index"); | ||
Object.defineProperty(exports, "Container", { enumerable: true, get: function () { return index_1.Container; } }); | ||
//# sourceMappingURL=index.js.map |
@@ -1,2 +0,2 @@ | ||
export { Container } from './Container'; | ||
export { Container } from './Container/index'; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@roots/container", | ||
"version": "3.2.0-next.0", | ||
"version": "4.0.0", | ||
"description": "Collections utility", | ||
@@ -11,2 +11,9 @@ "homepage": "https://roots.io/bud", | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "Kelly Mears", | ||
"url": "https://github.com/kellymears" | ||
} | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
@@ -19,8 +26,4 @@ "url": "https://github.com/roots/bud/issues" | ||
}, | ||
"license": "MIT", | ||
"contributors": [ | ||
"Kelly Mears <kelly@roots.io> (https://kellymears.me)" | ||
], | ||
"engines": { | ||
"node": ">=12" | ||
"node": ">=14" | ||
}, | ||
@@ -32,6 +35,10 @@ "keywords": [ | ||
"files": [ | ||
"lib/" | ||
"docs/", | ||
"lib/", | ||
"types/", | ||
"manifest.yml" | ||
], | ||
"main": "./lib/cjs/index.js", | ||
"module": "./lib/esm/index.js", | ||
"types": "./types/index.d.ts", | ||
"exports": { | ||
@@ -41,22 +48,25 @@ "require": "./lib/cjs/index.js", | ||
}, | ||
"types": "./lib/types/index.d.ts", | ||
"scripts": { | ||
"build": "run-s build:cjs build:esm", | ||
"build:cjs": "tsc --build tsconfig.json", | ||
"build:esm": "tsc --build tsconfig-esm.json", | ||
"lint": "run-s lint:*", | ||
"lint:eslint": "eslint 'src/**/*.{js,ts,tsx}' --fix", | ||
"lint:prettier": "prettier 'src/**/*' --write", | ||
"clean": "run-s clean:*", | ||
"clean:lib": "rimraf ./lib", | ||
"clean:modules": "rimraf ./node_modules", | ||
"clean:types": "rimraf ./types", | ||
"pkg": "run-s pkg:*", | ||
"pkg:check": "package-check --verbose", | ||
"pkg:format": "prettier './lib/**/*.{js,ts}' --write" | ||
"build": "yarn g:build", | ||
"build:cjs": "yarn g:build:cjs", | ||
"build:esm": "yarn g:build:esm", | ||
"lint": "yarn g:lint", | ||
"lint:eslint": "yarn g:lint:eslint", | ||
"lint:prettier": "yarn g:lint:prettier", | ||
"clean": "yarn g:clean", | ||
"clean:lib": "yarn g:clean:lib", | ||
"clean:modules": "yarn g:clean:modules", | ||
"clean:types": "yarn g:clean:types", | ||
"pkg": "yarn g:pkg", | ||
"pkg:check": "yarn g:pkg:check", | ||
"pkg:format": "yarn g:pkg:format" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^15.0.0", | ||
"type-fest": "^1.0.2" | ||
}, | ||
"dependencies": { | ||
"lodash": "^4.17.19" | ||
}, | ||
"gitHead": "e15525c323838dea7328c95667fdc5d571e94ebc" | ||
"autobind-decorator": "^2.4.0", | ||
"lodash": "^4.17.21" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
474670
0
2
2
2057
+ Addedautobind-decorator@^2.4.0
+ Addedautobind-decorator@2.4.0(transitive)
Updatedlodash@^4.17.21