chore: release v1.0.0

This commit is contained in:
Jay 2022-10-04 20:25:21 +02:00
parent aa001e2946
commit ff34f6dd51
No known key found for this signature in database
GPG Key ID: 0AF4A0BCD29D661F
15 changed files with 6849 additions and 1914 deletions

View File

@ -1,7 +1,7 @@
{
"name": "axios",
"main": "./dist/axios.js",
"version": "1.0.0-alpha.1",
"version": "1.0.0",
"homepage": "https://axios-http.com",
"authors": [
"Matt Zabriskie"

2549
dist/axios.js vendored

File diff suppressed because it is too large Load Diff

2
dist/axios.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/axios.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

2434
dist/esm/axios.js vendored

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

3750
dist/node/axios.cjs vendored Normal file

File diff suppressed because it is too large Load Diff

1
dist/node/axios.cjs.map vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -33,7 +33,8 @@ const bower = gulp.task('bower', async function () {
async function getContributors(user, repo, maxCount = 1) {
const contributors = (await axios.get(
`https://api.github.com/repos/${encodeURIComponent(user)}/${encodeURIComponent(repo)}/contributors?per_page=${maxCount}`
`https://api.github.com/repos/${encodeURIComponent(user)}/${encodeURIComponent(repo)}/contributors`,
{ params: { per_page: maxCount } }
)).data;
return Promise.all(contributors.map(async (contributor)=> {

2
lib/env/data.js vendored
View File

@ -1 +1 @@
export const VERSION = "1.0.0-alpha.1";
export const VERSION = "1.0.0";

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "axios",
"version": "1.0.0-alpha.1",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "axios",
"version": "1.0.0-alpha.1",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"follow-redirects": "^1.15.0",

View File

@ -1,6 +1,6 @@
{
"name": "axios",
"version": "1.0.0-alpha.1",
"version": "1.0.0",
"description": "Promise based HTTP client for the browser and node.js",
"main": "index.js",
"exports": {
@ -118,8 +118,8 @@
"Matt Zabriskie (https://github.com/mzabriskie)",
"Nick Uraltsev (https://github.com/nickuraltsev)",
"Jay (https://github.com/jasonsaayman)",
"Emily Morehouse (https://github.com/emilyemorehouse)",
"Dmitriy Mozgovoy (https://github.com/DigitalBrainJS)",
"Emily Morehouse (https://github.com/emilyemorehouse)",
"Rubén Norte (https://github.com/rubennorte)",
"Justin Beckwith (https://github.com/JustinBeckwith)",
"Martti Laine (https://github.com/codeclown)",
@ -130,4 +130,4 @@
"Ben Carp (https://github.com/carpben)",
"Daniel Lopretto (https://github.com/timemachine3030)"
]
}
}