@cuaklabs/iocuak-common
Advanced tools
Comparing version 0.1.1 to 0.2.0
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). | ||
## 0.2.0 - 2023-02-05 | ||
<!-- | ||
## [UNRELEASED] | ||
### Minor Changes | ||
### Added | ||
### Changed | ||
### Deprecated | ||
### Removed | ||
### Fixed | ||
### Security | ||
### Docs | ||
--> | ||
- c4861bc: Added `ContainerModuleMetadataId` | ||
- 42198a4: Added `stringifyServiceId` | ||
## [UNRELEASED] | ||
## 0.1.1 - 2022-12-28 | ||
### Changed | ||
- Updated dependencies to no longer require `reflect-metadata`. | ||
## 0.1.0 - 2022-08-19 | ||
### Added | ||
- Added `chain`. | ||
@@ -46,4 +28,1 @@ - Added `isFunction`. | ||
- Added `Tag`. | ||
@@ -1,11 +0,13 @@ | ||
import { Newable } from './models/Newable'; | ||
import { ServiceId } from './models/ServiceId'; | ||
import { Tag } from './models/Tag'; | ||
import { chain } from './utils/chain'; | ||
import { isFunction } from './utils/isFunction'; | ||
import { isPromiseLike } from './utils/isPromiseLike'; | ||
import { mapIterable } from './utils/mapIterable'; | ||
import { mapIterator } from './utils/mapIterator'; | ||
export type { Newable, Tag, ServiceId }; | ||
export { chain, isFunction, isPromiseLike, mapIterable, mapIterator }; | ||
import { mapIterator } from './common/actions/mapIterator'; | ||
import { chain } from './common/calculations/chain'; | ||
import { isFunction } from './common/calculations/isFunction'; | ||
import { isPromiseLike } from './common/calculations/isPromiseLike'; | ||
import { mapIterable } from './common/calculations/mapIterable'; | ||
import { Newable } from './common/models/Newable'; | ||
import { ContainerModuleMetadataId } from './containerModuleMetadata/models/ContainerModuleMetadataId'; | ||
import { stringifyServiceId } from './service/calculations/stringifyServiceId'; | ||
import { ServiceId } from './service/models/ServiceId'; | ||
import { Tag } from './service/models/Tag'; | ||
export type { ContainerModuleMetadataId, Newable, Tag, ServiceId }; | ||
export { chain, isFunction, isPromiseLike, mapIterable, mapIterator, stringifyServiceId, }; | ||
//# sourceMappingURL=index.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.mapIterator = exports.mapIterable = exports.isPromiseLike = exports.isFunction = exports.chain = void 0; | ||
const chain_1 = require("./utils/chain"); | ||
exports.stringifyServiceId = exports.mapIterator = exports.mapIterable = exports.isPromiseLike = exports.isFunction = exports.chain = void 0; | ||
const mapIterator_1 = require("./common/actions/mapIterator"); | ||
Object.defineProperty(exports, "mapIterator", { enumerable: true, get: function () { return mapIterator_1.mapIterator; } }); | ||
const chain_1 = require("./common/calculations/chain"); | ||
Object.defineProperty(exports, "chain", { enumerable: true, get: function () { return chain_1.chain; } }); | ||
const isFunction_1 = require("./utils/isFunction"); | ||
const isFunction_1 = require("./common/calculations/isFunction"); | ||
Object.defineProperty(exports, "isFunction", { enumerable: true, get: function () { return isFunction_1.isFunction; } }); | ||
const isPromiseLike_1 = require("./utils/isPromiseLike"); | ||
const isPromiseLike_1 = require("./common/calculations/isPromiseLike"); | ||
Object.defineProperty(exports, "isPromiseLike", { enumerable: true, get: function () { return isPromiseLike_1.isPromiseLike; } }); | ||
const mapIterable_1 = require("./utils/mapIterable"); | ||
const mapIterable_1 = require("./common/calculations/mapIterable"); | ||
Object.defineProperty(exports, "mapIterable", { enumerable: true, get: function () { return mapIterable_1.mapIterable; } }); | ||
const mapIterator_1 = require("./utils/mapIterator"); | ||
Object.defineProperty(exports, "mapIterator", { enumerable: true, get: function () { return mapIterator_1.mapIterator; } }); | ||
const stringifyServiceId_1 = require("./service/calculations/stringifyServiceId"); | ||
Object.defineProperty(exports, "stringifyServiceId", { enumerable: true, get: function () { return stringifyServiceId_1.stringifyServiceId; } }); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@cuaklabs/iocuak-common", | ||
"version": "0.1.1", | ||
"version": "0.2.0", | ||
"description": "Common models for iocuak", | ||
@@ -22,20 +22,20 @@ "main": "lib/index.js", | ||
"devDependencies": { | ||
"@jest/globals": "29.3.1", | ||
"@jest/globals": "29.4.1", | ||
"@stryker-mutator/core": "6.3.1", | ||
"@stryker-mutator/jest-runner": "6.3.1", | ||
"@stryker-mutator/typescript-checker": "6.3.1", | ||
"@types/node": "18.11.18", | ||
"@typescript-eslint/eslint-plugin": "5.47.1", | ||
"@typescript-eslint/parser": "5.47.1", | ||
"eslint": "8.30.0", | ||
"eslint-import-resolver-typescript": "3.5.2", | ||
"@types/node": "18.11.19", | ||
"@typescript-eslint/eslint-plugin": "5.50.0", | ||
"@typescript-eslint/parser": "5.50.0", | ||
"eslint": "8.33.0", | ||
"eslint-import-resolver-typescript": "3.5.3", | ||
"eslint-plugin-import": "2.26.0", | ||
"eslint-plugin-jest": "27.1.7", | ||
"eslint-plugin-jest": "27.2.1", | ||
"eslint-plugin-prettier": "4.2.1", | ||
"jest": "29.3.1", | ||
"prettier": "2.8.1", | ||
"rimraf": "3.0.2", | ||
"ts-jest": "29.0.3", | ||
"jest": "29.4.1", | ||
"prettier": "2.8.3", | ||
"rimraf": "4.1.2", | ||
"ts-jest": "29.0.5", | ||
"ts-node": "10.9.1", | ||
"typescript": "4.9.4" | ||
"typescript": "4.9.5" | ||
}, | ||
@@ -42,0 +42,0 @@ "homepage": "https://github.com/cuaklabs/iocuak/tree/master/packages/iocuak/tree/master/packages/iocuak-common#readme", |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
17793
54
125
1