-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
yujinlei
committed
Dec 30, 2020
1 parent
d4e43ef
commit 5d20eb7
Showing
10 changed files
with
350 additions
and
383 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
registry = https://registry.npmjs.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
## 1.0.0 | ||
- `new` 新增类型缓存功能 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,34 @@ | ||
{ | ||
"name": "mini-cache", | ||
"name": "@miniprogram/cache", | ||
"version": "1.0.0", | ||
"description": "", | ||
"description": "一个适用于微信小程序的模块化缓存工具库", | ||
"main": "dist/index.js", | ||
"module": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"author": "YuJinLei <[email protected]>", | ||
"license": "ISC", | ||
"keywords": [ | ||
"@miniprogram", | ||
"@miniprogram-cache", | ||
"miniprogram", | ||
"miniprogram-cache", | ||
"mini", | ||
"mini-cache", | ||
"cache" | ||
], | ||
"directories": { | ||
"lib": "lib" | ||
}, | ||
"scripts": { | ||
"dev": "tsc -w" | ||
"dev": "yarn && tsc -w", | ||
"build": "rm -rf dist && yarn && tsc" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"files": [ | ||
"dist", | ||
"package.json", | ||
"CHANGELOG.md", | ||
"README.md" | ||
], | ||
"devDependencies": { | ||
"tslint": "^6.1.3", | ||
"typescript": "^4.1.3" | ||
|
Oops, something went wrong.