-
Notifications
You must be signed in to change notification settings - Fork 576
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: expose sdk version with OSS (#389)
- Loading branch information
1 parent
02fef3f
commit b796854
Showing
69 changed files
with
6,779 additions
and
56,652 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,15 @@ | ||
node_modules/ | ||
coverage/ | ||
.tmp/ | ||
.git/ | ||
lib/browser/version.js | ||
shims/ | ||
example/node_modules/ | ||
example/public/ | ||
example/public/index.js | ||
test/.tmp/ | ||
test/browser/.tmp | ||
test/browser/build | ||
test/benchmark/ | ||
test/fixtures/ | ||
task/ |
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,28 @@ | ||
/* eslint max-len: [0] */ | ||
module.exports = { | ||
extends: 'airbnb', | ||
env: { | ||
browser: true, | ||
node: true, | ||
es6: true, | ||
mocha: true, | ||
jasmine: true, | ||
jest: true, | ||
}, | ||
rules: { | ||
indent: ['error', 2], | ||
// override default options | ||
'no-underscore-dangle': [0], | ||
'no-plusplus': [0], | ||
'no-param-reassign': [0], | ||
'max-len': ['warn', 120, 2, { | ||
ignoreUrls: true, | ||
ignoreComments: false, | ||
ignoreRegExpLiterals: true, | ||
ignoreStrings: true, | ||
ignoreTemplateLiterals: true, | ||
}], | ||
// wait node version >= 5.10.0 will start this rule | ||
'no-buffer-constructor': [0], | ||
} | ||
}; |
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,21 @@ | ||
<!-- | ||
Thank you for reporting an issue. | ||
1. It's RECOMMENDED to submit PR for typo or tiny bug fix. | ||
3. If this's a BUG, please provide: course repetition, network error log and configuration. Fill in as much of the template below as you're able. | ||
4. It will be nice to use example project to provide a mini GitHub repository which can reproduce the issue. | ||
感谢您向我们反馈问题。 | ||
1. 我们推荐如果是小问题(错别字修改,小的 bug fix)直接提交 PR。 | ||
2. 如果是一个 BUG,请提供:复现步骤,错误请求和响应日志以及相关配置,并尽量填写下面的模板中的条目(请网络响应中x-oss-request-id字段值)。 | ||
5. 如果可以,请使用项目中 example工程提供一个最小可复现的代码仓库,方便我们排查问题。 | ||
6. 扩展阅读:[如何向开源项目提交无法解答的问题](https://zhuanlan.zhihu.com/p/25795393) | ||
--> | ||
|
||
* **Browser Version or Node Version**: | ||
* **ali-oss Version**: | ||
* **Mini Showcase Repository**: | ||
* **Network Resoponse Header x-oss-request-id**: | ||
|
||
<!-- Enter your issue details below this comment. --> |
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 |
---|---|---|
|
@@ -25,7 +25,8 @@ build/Release | |
node_modules | ||
|
||
build | ||
test/.tmp | ||
test/node/.tmp | ||
test/browser/.tmp | ||
test/demo.js | ||
yarn.lock | ||
|
||
|
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
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
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 |
---|---|---|
|
@@ -8,5 +8,5 @@ | |
"package.json" | ||
], | ||
"main": "dist/aliyun-oss-sdk.js", | ||
"version": "4.13.2" | ||
"version": "4.14.1" | ||
} |
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
Oops, something went wrong.