mirror of
https://github.com/tenrok/axios.git
synced 2026-06-23 20:40:40 +03:00
chore: release v1.0.0
This commit is contained in:
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "axios",
|
"name": "axios",
|
||||||
"main": "./dist/axios.js",
|
"main": "./dist/axios.js",
|
||||||
"version": "1.0.0-alpha.1",
|
"version": "1.0.0",
|
||||||
"homepage": "https://axios-http.com",
|
"homepage": "https://axios-http.com",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Matt Zabriskie"
|
"Matt Zabriskie"
|
||||||
|
|||||||
Vendored
+1563
-986
File diff suppressed because it is too large
Load Diff
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1520
-914
File diff suppressed because it is too large
Load Diff
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+3750
File diff suppressed because it is too large
Load Diff
Vendored
+1
File diff suppressed because one or more lines are too long
+2
-1
@@ -33,7 +33,8 @@ const bower = gulp.task('bower', async function () {
|
|||||||
|
|
||||||
async function getContributors(user, repo, maxCount = 1) {
|
async function getContributors(user, repo, maxCount = 1) {
|
||||||
const contributors = (await axios.get(
|
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;
|
)).data;
|
||||||
|
|
||||||
return Promise.all(contributors.map(async (contributor)=> {
|
return Promise.all(contributors.map(async (contributor)=> {
|
||||||
|
|||||||
Vendored
+1
-1
@@ -1 +1 @@
|
|||||||
export const VERSION = "1.0.0-alpha.1";
|
export const VERSION = "1.0.0";
|
||||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "axios",
|
"name": "axios",
|
||||||
"version": "1.0.0-alpha.1",
|
"version": "1.0.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "axios",
|
"name": "axios",
|
||||||
"version": "1.0.0-alpha.1",
|
"version": "1.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"follow-redirects": "^1.15.0",
|
"follow-redirects": "^1.15.0",
|
||||||
|
|||||||
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "axios",
|
"name": "axios",
|
||||||
"version": "1.0.0-alpha.1",
|
"version": "1.0.0",
|
||||||
"description": "Promise based HTTP client for the browser and node.js",
|
"description": "Promise based HTTP client for the browser and node.js",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"exports": {
|
"exports": {
|
||||||
@@ -118,8 +118,8 @@
|
|||||||
"Matt Zabriskie (https://github.com/mzabriskie)",
|
"Matt Zabriskie (https://github.com/mzabriskie)",
|
||||||
"Nick Uraltsev (https://github.com/nickuraltsev)",
|
"Nick Uraltsev (https://github.com/nickuraltsev)",
|
||||||
"Jay (https://github.com/jasonsaayman)",
|
"Jay (https://github.com/jasonsaayman)",
|
||||||
"Emily Morehouse (https://github.com/emilyemorehouse)",
|
|
||||||
"Dmitriy Mozgovoy (https://github.com/DigitalBrainJS)",
|
"Dmitriy Mozgovoy (https://github.com/DigitalBrainJS)",
|
||||||
|
"Emily Morehouse (https://github.com/emilyemorehouse)",
|
||||||
"Rubén Norte (https://github.com/rubennorte)",
|
"Rubén Norte (https://github.com/rubennorte)",
|
||||||
"Justin Beckwith (https://github.com/JustinBeckwith)",
|
"Justin Beckwith (https://github.com/JustinBeckwith)",
|
||||||
"Martti Laine (https://github.com/codeclown)",
|
"Martti Laine (https://github.com/codeclown)",
|
||||||
|
|||||||
Reference in New Issue
Block a user