diff --git a/CHANGELOG.md b/CHANGELOG.md index 329d3fc..436177e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # 变更日志 +## 0.3.3 / 2019-10-10 + +- fix: 修复丢失d.ts的问题 + ## 0.3.1 / 2019-3-4 - fix: 修复依赖不自动更新的问题 diff --git a/LICENSE b/LICENSE index 33c1058..1b4b744 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (C) 2017-2018 yanhaijing +Copyright (C) 2017-2019 yanhaijing Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/README-zh_CN.md b/README-zh_CN.md index 2abc5f3..7d02430 100644 --- a/README-zh_CN.md +++ b/README-zh_CN.md @@ -3,7 +3,7 @@ [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jsmini/extend/blob/master/LICENSE) [![Build Status](https://travis-ci.org/jsmini/extend.svg?branch=master)](https://travis-ci.org/jsmini/extend) [![Coveralls](https://img.shields.io/coveralls/jsmini/extend.svg)](https://coveralls.io/github/jsmini/extend) -[![npm](https://img.shields.io/badge/npm-0.3.1-orange.svg)](https://www.npmjs.com/package/@jsmini/extend) +[![npm](https://img.shields.io/badge/npm-0.3.3-orange.svg)](https://www.npmjs.com/package/@jsmini/extend) [![NPM downloads](http://img.shields.io/npm/dm/@jsmini/extend.svg?style=flat-square)](http://www.npmtrends.com/@jsmini/extend) [![Percentage of issues still open](http://isitmaintained.com/badge/open/jsmini/extend.svg)](http://isitmaintained.com/project/jsmini/extend "Percentage of issues still open") diff --git a/README.md b/README.md index 1ea62cf..d93b6ad 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jsmini/extend/blob/master/LICENSE) [![Build Status](https://travis-ci.org/jsmini/extend.svg?branch=master)](https://travis-ci.org/jsmini/extend) [![Coveralls](https://img.shields.io/coveralls/jsmini/extend.svg)](https://coveralls.io/github/jsmini/extend) -[![npm](https://img.shields.io/badge/npm-0.3.1-orange.svg)](https://www.npmjs.com/package/@jsmini/extend) +[![npm](https://img.shields.io/badge/npm-0.3.3-orange.svg)](https://www.npmjs.com/package/@jsmini/extend) [![NPM downloads](http://img.shields.io/npm/dm/@jsmini/extend.svg?style=flat-square)](http://www.npmtrends.com/@jsmini/extend) [![Percentage of issues still open](http://isitmaintained.com/badge/open/jsmini/extend.svg)](http://isitmaintained.com/project/jsmini/extend "Percentage of issues still open") diff --git a/package.json b/package.json index 36a8060..a32ed85 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@jsmini/extend", - "version": "0.3.2", + "version": "0.3.3", "description": "将对象属性递归放到目标对象,类似jQuery的`$.extend`", "main": "dist/index.js", "jsnext:main": "dist/index.esm.js", @@ -42,7 +42,7 @@ "rollup-plugin-babel": "^4.0.3", "rollup-plugin-commonjs": "8.3.0", "rollup-plugin-node-resolve": "3.0.3", - "@js-lib/cli": "^1.3.0", + "@js-lib/cli": "^1.4.2", "cross-env": "5.2.0", "@babel/cli": "7.1.5", "@babel/core": "^7.1.2", @@ -60,9 +60,10 @@ "@babel/runtime": "^7.1.2" }, "files": [ - "/dist" + "/dist", + "*.d.ts" ], "engines": { "node": ">= 0.12.0" } -} +} \ No newline at end of file