@qiwi/substrate-std
Advanced tools
Comparing version 1.0.31 to 1.0.32
@@ -0,1 +1,16 @@ | ||
## @qiwi/substrate-std [1.0.32](https://github.com/qiwi/substrate/compare/@qiwi/substrate-std@1.0.31...@qiwi/substrate-std@1.0.32) (2020-05-24) | ||
### Performance Improvements | ||
* **package:** deps revision ([b87d46e](https://github.com/qiwi/substrate/commit/b87d46e871b69b9c1eb79a6f701db0130d4c169e)) | ||
### Dependencies | ||
* **@qiwi/substrate-types:** upgraded to 1.40.3 | ||
## @qiwi/substrate-std [1.0.31](https://github.com/qiwi/substrate/compare/@qiwi/substrate-std@1.0.30...@qiwi/substrate-std@1.0.31) (2020-05-21) | ||
@@ -2,0 +17,0 @@ |
@@ -30,3 +30,3 @@ /** | ||
clear(): void; | ||
indexOf(item: any): number; | ||
indexOf(item: T): number; | ||
add(index: number | string, item: T): T; | ||
@@ -33,0 +33,0 @@ isEmpty(): boolean; |
@@ -1,1 +0,1 @@ | ||
{"name":"@qiwi/substrate-std","version":"1.0.31","main":"target/es5/index.js","source":"target/ts/index.ts","types":"target/es5/index.d.ts","typescript":{"definition":"target/es5/index.d.ts"},"typesVersions":{">=3.1":{"*":["target/es5/index.d.ts","src/test/ts/*"]}},"scripts":{"clean":"rm -rf target","build":"yarn build:es5 && yarn build:es6 && yarn build:ts && yarn build:libdef && yarn docs","build:es5":"mkdir -p target/es5 && tsc -p tsconfig.json --target ES5 --outDir target/es5","build:es6":"mkdir -p target/es6 && tsc -p tsconfig.json --target ES6 --outDir target/es6","build:ts":"cp -r src/main/ts/ target/ts/","build:libdef":"dts-generator --project ./ --out typings/index.d.ts --prefix @qiwi/substrate-std/target/es5 --name @qiwi/substrate-std --main @qiwi/substrate-std/target/es5/index && libdeffix --dts=./typings/index.d.ts --prefix=@qiwi/substrate-std/target/es5 && flowgen typings/index.d.ts --output-file flow-typed/index.flow.js","test":"yarn jest","jest":"jest --config=jest.config.json","docs":"typedoc --readme README.md --tsconfig ./tsconfig.json ./src/main && touch ./docs/.nojekyll || exit 0"},"files":["README.md","CHANGELOG.md","typings","flow-typed","target"],"devDependencies":{"@qiwi/libdefkit":"^1.0.2","@qiwi/uniconfig":"3.3.1","@types/bluebird":"3.5.32","@types/config":"0.0.36","@types/jest":"25.2.3","@types/lodash":"4.14.152","@types/node":"14.0.4","@types/parsimmon":"1.10.2","@types/underscore":"1.10.0","bluebird":"3.7.2","conf":"6.2.4","config":"3.3.1","dtslint":"3.6.4","lodash":"4.17.15","replace-in-file":"6.0.0","ts-loader":"7.0.4","ts-node":"8.10.1","ts-to-flow":"0.0.3","typescript":"3.9.3","underscore":"1.10.2","typedoc":"0.17.7","typedoc-plugin-external-module-name":"3.1.0"},"dependencies":{"@qiwi/substrate-types":"1.40.2"},"peerDependencies":{},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/qiwi/substrate.git"},"keywords":[],"bugs":{"url":"https://github.com/qiwi/substrate/issues"},"optionalDependencies":{}} | ||
{"name":"@qiwi/substrate-std","version":"1.0.32","main":"target/es5/index.js","source":"target/ts/index.ts","types":"target/es5/index.d.ts","typescript":{"definition":"target/es5/index.d.ts"},"typesVersions":{">=3.1":{"*":["target/es5/index.d.ts","src/test/ts/*"]}},"scripts":{"clean":"rm -rf target","build":"yarn build:es5 && yarn build:es6 && yarn build:ts && yarn build:libdef && yarn docs","build:es5":"mkdir -p target/es5 && tsc -p tsconfig.json --target ES5 --outDir target/es5","build:es6":"mkdir -p target/es6 && tsc -p tsconfig.json --target ES6 --outDir target/es6","build:ts":"cp -r src/main/ts/ target/ts/","build:libdef":"dts-generator --project ./ --out typings/index.d.ts --prefix @qiwi/substrate-std/target/es5 --name @qiwi/substrate-std --main @qiwi/substrate-std/target/es5/index && libdeffix --dts=./typings/index.d.ts --prefix=@qiwi/substrate-std/target/es5 && flowgen typings/index.d.ts --output-file flow-typed/index.flow.js","test":"yarn jest","jest":"jest --config=jest.config.json","docs":"typedoc --readme README.md --tsconfig ./tsconfig.json ./src/main && touch ./docs/.nojekyll || exit 0"},"files":["README.md","CHANGELOG.md","typings","flow-typed","target"],"devDependencies":{"@qiwi/libdefkit":"^1.0.2","@qiwi/uniconfig":"3.3.1","@types/bluebird":"3.5.32","@types/config":"0.0.36","@types/jest":"25.2.3","@types/lodash":"4.14.152","@types/node":"14.0.5","@types/parsimmon":"1.10.2","@types/underscore":"1.10.0","bluebird":"3.7.2","conf":"6.2.4","config":"3.3.1","dtslint":"3.6.4","lodash":"4.17.15","ts-loader":"7.0.4","ts-node":"8.10.1","ts-to-flow":"0.0.3","typescript":"3.9.3","underscore":"1.10.2","typedoc":"0.17.7","typedoc-plugin-external-module-name":"3.1.0"},"dependencies":{"@qiwi/substrate-types":"1.40.3"},"peerDependencies":{},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/qiwi/substrate.git"},"keywords":[],"bugs":{"url":"https://github.com/qiwi/substrate/issues"},"optionalDependencies":{}} |
@@ -21,5 +21,5 @@ /** @module @qiwi/substrate-std */ | ||
clear(): void; | ||
indexOf(item: any): number; | ||
indexOf(item: T): number; | ||
add(index: number | string, item: T): T; | ||
isEmpty(): boolean; | ||
} |
@@ -21,5 +21,5 @@ /** @module @qiwi/substrate-std */ | ||
clear(): void; | ||
indexOf(item: any): number; | ||
indexOf(item: T): number; | ||
add(index: number | string, item: T): T; | ||
isEmpty(): boolean; | ||
} |
@@ -69,3 +69,3 @@ /** @module @qiwi/substrate-std */ | ||
indexOf (item: any): number { | ||
indexOf (item: T): number { | ||
return this._storage.indexOf(item) | ||
@@ -72,0 +72,0 @@ } |
@@ -22,3 +22,3 @@ declare module '@qiwi/substrate-std/target/es5/stack' { | ||
clear(): void; | ||
indexOf(item: any): number; | ||
indexOf(item: T): number; | ||
add(index: number | string, item: T): T; | ||
@@ -25,0 +25,0 @@ isEmpty(): boolean; |
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
24455
21
+ Added@qiwi/substrate-types@1.40.3(transitive)
- Removed@qiwi/substrate-types@1.40.2(transitive)
Updated@qiwi/substrate-types@1.40.3