Skip to content

Commit

Permalink
v1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Jan 9, 2023
1 parent 82a3804 commit 57344df
Show file tree
Hide file tree
Showing 12 changed files with 483 additions and 485 deletions.
12 changes: 5 additions & 7 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
{
"lerna": "2.4.0",
"packages": [
"packages/*"
],
"version": "1.0.5",
"npmClient": "yarn",
"useWorkspaces": true
"lerna": "2.4.0",
"packages": ["packages/*"],
"version": "1.0.6",
"npmClient": "yarn",
"useWorkspaces": true
}
48 changes: 24 additions & 24 deletions packages/benchmark/package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"private": true,
"name": "benchmark",
"version": "1.0.5",
"description": "benchmark for @immutable-array",
"main": "benchamrk.js",
"scripts": {
"array": "node src/array.js > output/array.log",
"immutable-array": "node src/immutable-array.js > output/immutable-array.log",
"precompare": "mkdir -p output && npm run array && npm run immutable-array",
"compare": "nanobench-compare output/array.log output/immutable-array.log",
"test": "jest"
},
"keywords": [
"benchmark"
],
"author": "azu",
"license": "MIT",
"devDependencies": {
"@immutable-array/prototype": "^1.0.5",
"@types/jest": "^29.2.5",
"jest": "^29.3.1",
"nanobench": "^3.0.0",
"ts-jest": "^29.0.3"
}
"private": true,
"name": "benchmark",
"version": "1.0.6",
"description": "benchmark for @immutable-array",
"main": "benchamrk.js",
"scripts": {
"array": "node src/array.js > output/array.log",
"immutable-array": "node src/immutable-array.js > output/immutable-array.log",
"precompare": "mkdir -p output && npm run array && npm run immutable-array",
"compare": "nanobench-compare output/array.log output/immutable-array.log",
"test": "jest"
},
"keywords": [
"benchmark"
],
"author": "azu",
"license": "MIT",
"devDependencies": {
"@immutable-array/prototype": "^1.0.6",
"@types/jest": "^29.2.5",
"jest": "^29.3.1",
"nanobench": "^3.0.0",
"ts-jest": "^29.0.3"
}
}
88 changes: 44 additions & 44 deletions packages/copy-within/package.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
{
"directories": {
"lib": "lib",
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "@immutable-array/copy-within",
"version": "1.0.5",
"description": "Immutable Array.prototype.copyWithin().",
"main": "lib/copy-within.js",
"types": "lib/copy-within.d.ts",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"prepublish": "npm run --if-present build",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"array",
"immutable"
],
"repository": {
"type": "git",
"url": "https://github.com/azu/immutable-array-prototype.git"
},
"bugs": {
"url": "https://github.com/azu/immutable-array-prototype/issues"
},
"homepage": "https://github.com/azu/immutable-array-prototype/tree/master/packages/copy-within/",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
"directories": {
"lib": "lib",
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "@immutable-array/copy-within",
"version": "1.0.6",
"description": "Immutable Array.prototype.copyWithin().",
"main": "lib/copy-within.js",
"types": "lib/copy-within.d.ts",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"prepublish": "npm run --if-present build",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"array",
"immutable"
],
"repository": {
"type": "git",
"url": "https://github.com/azu/immutable-array-prototype.git"
},
"bugs": {
"url": "https://github.com/azu/immutable-array-prototype/issues"
},
"homepage": "https://github.com/azu/immutable-array-prototype/tree/master/packages/copy-within/",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}
88 changes: 44 additions & 44 deletions packages/fill/package.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
{
"directories": {
"lib": "lib",
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "@immutable-array/fill",
"version": "1.0.5",
"description": "Immutable Array.prototype.fill.",
"main": "lib/fill.js",
"types": "lib/fill.d.ts",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"prepublish": "npm run --if-present build",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"array",
"immutable"
],
"repository": {
"type": "git",
"url": "https://github.com/azu/immutable-array-prototype.git"
},
"bugs": {
"url": "https://github.com/azu/immutable-array-prototype/issues"
},
"homepage": "https://github.com/azu/immutable-array-prototype/tree/master/packages/fill/",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
"directories": {
"lib": "lib",
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "@immutable-array/fill",
"version": "1.0.6",
"description": "Immutable Array.prototype.fill.",
"main": "lib/fill.js",
"types": "lib/fill.d.ts",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"prepublish": "npm run --if-present build",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"array",
"immutable"
],
"repository": {
"type": "git",
"url": "https://github.com/azu/immutable-array-prototype.git"
},
"bugs": {
"url": "https://github.com/azu/immutable-array-prototype/issues"
},
"homepage": "https://github.com/azu/immutable-array-prototype/tree/master/packages/fill/",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}
88 changes: 44 additions & 44 deletions packages/pop/package.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
{
"directories": {
"lib": "lib",
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "@immutable-array/pop",
"version": "1.0.5",
"description": "Immutable Array.prototype.pop.",
"main": "lib/pop.js",
"types": "lib/pop.d.ts",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"prepublish": "npm run --if-present build",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"array",
"immutable"
],
"repository": {
"type": "git",
"url": "https://github.com/azu/immutable-array-prototype.git"
},
"bugs": {
"url": "https://github.com/azu/immutable-array-prototype/issues"
},
"homepage": "https://github.com/azu/immutable-array-prototype/tree/master/packages/pop/",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
"directories": {
"lib": "lib",
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "@immutable-array/pop",
"version": "1.0.6",
"description": "Immutable Array.prototype.pop.",
"main": "lib/pop.js",
"types": "lib/pop.d.ts",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"prepublish": "npm run --if-present build",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"array",
"immutable"
],
"repository": {
"type": "git",
"url": "https://github.com/azu/immutable-array-prototype.git"
},
"bugs": {
"url": "https://github.com/azu/immutable-array-prototype/issues"
},
"homepage": "https://github.com/azu/immutable-array-prototype/tree/master/packages/pop/",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}
Loading

0 comments on commit 57344df

Please sign in to comment.