Skip to content

Commit

Permalink
v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
wangxingkang committed Dec 10, 2019
1 parent 7f2c804 commit 0834d11
Show file tree
Hide file tree
Showing 34 changed files with 81 additions and 81 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.3.2",
"version": "0.3.3",
"packages": ["packages/*"],
"changelog": {
"repo": "walrus",
Expand Down
2 changes: 1 addition & 1 deletion packages/array-move/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/array-move",
"version": "0.3.2",
"version": "0.3.3",
"description": "将数组项移动到其他位置",
"author": "Pansy Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/common-regexp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/common-regexp",
"version": "0.3.2",
"version": "0.3.3",
"description": "常见正则表达式",
"author": "Pansy Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/delay/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/delay",
"version": "0.3.2",
"version": "0.3.3",
"description": "休眠函数",
"author": "Pansy Team",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions packages/dent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/dent",
"version": "0.3.2",
"version": "0.3.3",
"description": "每一行紧跟前导空白的插入值为多行时,保持缩进,且移除每一行的公共前导空白",
"author": "Pansy Team",
"license": "MIT",
Expand All @@ -16,8 +16,8 @@
"build": "node ../../node_modules/@walrus/pansy/dist/cli.js"
},
"dependencies": {
"@pansy/indent": "^0.3.2",
"@pansy/is-array": "^0.3.2"
"@pansy/indent": "^0.3.3",
"@pansy/is-array": "^0.3.3"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/enhance-type/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/enhance-type",
"version": "0.3.2",
"version": "0.3.3",
"description": "增强类型",
"author": "Pansy Team",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/get-type/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/get-type",
"version": "0.3.2",
"version": "0.3.3",
"description": "检测 `value` 的类型",
"author": "Pansy Team",
"license": "MIT",
Expand All @@ -16,7 +16,7 @@
"build": "node ../../node_modules/@walrus/pansy/dist/cli.js"
},
"dependencies": {
"@pansy/enhance-type": "^0.3.2"
"@pansy/enhance-type": "^0.3.3"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/group-by/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/group-by",
"version": "0.3.2",
"version": "0.3.3",
"description": "根据迭代函数返回的值对数组进行分组。",
"author": "Pansy Team",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions packages/indent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/indent",
"version": "0.3.2",
"version": "0.3.3",
"description": "每一行紧跟前导空白的插入值为多行时,保持缩进。",
"author": "Pansy Team",
"license": "MIT",
Expand All @@ -16,8 +16,8 @@
"build": "node ../../node_modules/@walrus/pansy/dist/cli.js"
},
"dependencies": {
"@pansy/is-array": "^0.3.2",
"@pansy/is-function": "^0.3.2"
"@pansy/is-array": "^0.3.3",
"@pansy/is-function": "^0.3.3"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/is-array/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-array",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为数组",
"author": "Pansy Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/is-boolean/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-boolean",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为boolean",
"author": "Pansy Team",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/is-date/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-date",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否是一个日期",
"author": "Pansy Team",
"license": "MIT",
Expand All @@ -16,7 +16,7 @@
"build": "node ../../node_modules/@walrus/pansy/dist/cli.js"
},
"dependencies": {
"@pansy/get-type": "^0.3.2"
"@pansy/get-type": "^0.3.3"
},
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions packages/is-empty-object/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-empty-object",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为一个空对象",
"author": "Pansy Team",
"license": "MIT",
Expand All @@ -16,7 +16,7 @@
"build": "node ../../node_modules/@walrus/pansy/dist/cli.js"
},
"dependencies": {
"@pansy/is-array": "^0.3.2"
"@pansy/is-array": "^0.3.3"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/is-function/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-function",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为函数",
"author": "Pansy Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/is-integer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-integer",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为一个整数",
"author": "Pansy Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/is-nan/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-nan",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为`NaN`",
"author": "Pansy Team",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/is-negative-integer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-negative-integer",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为一个负整数",
"author": "Pansy Team",
"license": "MIT",
Expand All @@ -16,7 +16,7 @@
"build": "node ../../node_modules/@walrus/pansy/dist/cli.js"
},
"dependencies": {
"@pansy/is-integer": "^0.3.2"
"@pansy/is-integer": "^0.3.3"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/is-nil/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-nil",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为null或undefined",
"author": "Pansy Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/is-nulll/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-null",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为空",
"author": "Pansy Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/is-number/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-number",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为数字",
"author": "Pansy Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/is-object/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-object",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为对象",
"author": "Pansy Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/is-plain-object/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-plain-object",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为简单对象",
"author": "Pansy Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/is-promise/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-promise",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为`promise`",
"author": "Pansy Team",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/is-regexp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-regexp",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为正则表达式",
"author": "Pansy Team",
"license": "MIT",
Expand All @@ -16,7 +16,7 @@
"build": "node ../../node_modules/@walrus/pansy/dist/cli.js"
},
"dependencies": {
"@pansy/get-type": "^0.3.2"
"@pansy/get-type": "^0.3.3"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/is-string/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-string",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为空",
"author": "Pansy Team",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/is-symbol/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-symbol",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为原始 `Symbol` 或者 `Symbol` 对象",
"author": "Pansy Team",
"license": "MIT",
Expand All @@ -16,7 +16,7 @@
"build": "node ../../node_modules/@walrus/pansy/dist/cli.js"
},
"dependencies": {
"@pansy/get-type": "^0.3.2"
"@pansy/get-type": "^0.3.3"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/is-undefined/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/is-undefined",
"version": "0.3.2",
"version": "0.3.3",
"description": "判断当前值是否为undefined",
"author": "Pansy Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/key-code/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/key-code",
"version": "0.3.2",
"version": "0.3.3",
"description": "一些按键代码定义和实用程序",
"author": "Pansy Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/number-precision/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/number-precision",
"version": "0.3.2",
"version": "0.3.3",
"description": "解决浮动运算问题,避免小数点后产生多数值和计算精度损失",
"author": "Pansy Team",
"license": "MIT",
Expand Down
64 changes: 32 additions & 32 deletions packages/pansy-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pansy/utils",
"version": "0.3.2",
"version": "0.3.3",
"description": "小巧实用的工具类库",
"main": "dist/index.js",
"module": "dist/index.esm.js",
Expand All @@ -14,37 +14,37 @@
"build": "node ../../node_modules/@walrus/pansy/dist/cli.js"
},
"dependencies": {
"@pansy/array-move": "^0.3.2",
"@pansy/common-regexp": "^0.3.2",
"@pansy/delay": "^0.3.2",
"@pansy/dent": "^0.3.2",
"@pansy/get-type": "^0.3.2",
"@pansy/group-by": "^0.3.2",
"@pansy/indent": "^0.3.2",
"@pansy/is-array": "^0.3.2",
"@pansy/is-boolean": "^0.3.2",
"@pansy/is-date": "^0.3.2",
"@pansy/is-empty-object": "^0.3.2",
"@pansy/is-function": "^0.3.2",
"@pansy/is-integer": "^0.3.2",
"@pansy/is-nan": "^0.3.2",
"@pansy/is-negative-integer": "^0.3.2",
"@pansy/is-nil": "^0.3.2",
"@pansy/is-null": "^0.3.2",
"@pansy/is-number": "^0.3.2",
"@pansy/is-object": "^0.3.2",
"@pansy/is-plain-object": "^0.3.2",
"@pansy/is-promise": "^0.3.2",
"@pansy/is-regexp": "^0.3.2",
"@pansy/is-string": "^0.3.2",
"@pansy/is-symbol": "^0.3.2",
"@pansy/is-undefined": "^0.3.2",
"@pansy/key-code": "^0.3.2",
"@pansy/number-precision": "^0.3.2",
"@pansy/policy": "^0.3.2",
"@pansy/replace-object-keys": "^0.3.2",
"@pansy/round": "^0.3.2",
"@pansy/url-utils": "^0.3.2"
"@pansy/array-move": "^0.3.3",
"@pansy/common-regexp": "^0.3.3",
"@pansy/delay": "^0.3.3",
"@pansy/dent": "^0.3.3",
"@pansy/get-type": "^0.3.3",
"@pansy/group-by": "^0.3.3",
"@pansy/indent": "^0.3.3",
"@pansy/is-array": "^0.3.3",
"@pansy/is-boolean": "^0.3.3",
"@pansy/is-date": "^0.3.3",
"@pansy/is-empty-object": "^0.3.3",
"@pansy/is-function": "^0.3.3",
"@pansy/is-integer": "^0.3.3",
"@pansy/is-nan": "^0.3.3",
"@pansy/is-negative-integer": "^0.3.3",
"@pansy/is-nil": "^0.3.3",
"@pansy/is-null": "^0.3.3",
"@pansy/is-number": "^0.3.3",
"@pansy/is-object": "^0.3.3",
"@pansy/is-plain-object": "^0.3.3",
"@pansy/is-promise": "^0.3.3",
"@pansy/is-regexp": "^0.3.3",
"@pansy/is-string": "^0.3.3",
"@pansy/is-symbol": "^0.3.3",
"@pansy/is-undefined": "^0.3.3",
"@pansy/key-code": "^0.3.3",
"@pansy/number-precision": "^0.3.3",
"@pansy/policy": "^0.3.3",
"@pansy/replace-object-keys": "^0.3.3",
"@pansy/round": "^0.3.3",
"@pansy/url-utils": "^0.3.3"
},
"publishConfig": {
"access": "public"
Expand Down
Loading

0 comments on commit 0834d11

Please sign in to comment.