Skip to content

Commit

Permalink
chore: change package organization (#22)
Browse files Browse the repository at this point in the history
Co-authored-by: Roman <[email protected]>
  • Loading branch information
SeqviriouM and SeqviriouM authored Nov 28, 2022
1 parent 448e477 commit 7d24df1
Show file tree
Hide file tree
Showing 10 changed files with 1,719 additions and 352 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"extends": ["@yandex-cloud/eslint-config", "@yandex-cloud/eslint-config/prettier"],
"extends": ["@gravity-ui/eslint-config", "@gravity-ui/eslint-config/prettier"],
"root": true
}
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: CI

on:
pull_request:
branches: [ '**' ]
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: Release

on:
push:
branches: [main]

name: release

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: yandex-cloud/ui-release-action@main
- uses: gravity-ui/release-action@v1
with:
github-token: ${{ secrets.YC_UI_BOT_GITHUB_TOKEN }}
npm-token: ${{ secrets.YC_UI_BOT_NPM_TOKEN }}
github-token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }}
npm-token: ${{ secrets.GRAVITY_UI_BOT_NPM_TOKEN }}
node-version: 14
2 changes: 1 addition & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('@yandex-cloud/prettier-config');
module.exports = require('@gravity-ui/prettier-config');
45 changes: 0 additions & 45 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,47 +1,2 @@
# Changelog

## [1.2.2](https://github.com/yandex-cloud/axios-wrapper/compare/v1.2.1...v1.2.2) (2022-07-15)


### Bug Fixes

* correctly handle errors with the missing response ([6b9dc0e](https://github.com/yandex-cloud/axios-wrapper/commit/6b9dc0eab2496aa21cd27e6044b5c6ab235210d1)), closes [#17](https://github.com/yandex-cloud/axios-wrapper/issues/17)

### [1.2.1](https://www.github.com/yandex-cloud/axios-wrapper/compare/v1.2.0...v1.2.1) (2022-04-05)


### Bug Fixes

* onDownloadProgress should be passed into options ([5008ab3](https://www.github.com/yandex-cloud/axios-wrapper/commit/5008ab3727367c3e852398e5314cdbdf19e4ec68))

## [1.2.0](https://www.github.com/yandex-cloud/axios-wrapper/compare/v1.1.0...v1.2.0) (2022-04-05)


### Features

* handle onDownloadProgress ([65558d1](https://www.github.com/yandex-cloud/axios-wrapper/commit/65558d10679a202983747f0a1db3be1294f8431e))

## [1.1.0](https://www.github.com/yandex-cloud/axios-wrapper/compare/v1.0.2...v1.1.0) (2022-02-25)


### Features

* add commonjs build to package.json ([2747900](https://www.github.com/yandex-cloud/axios-wrapper/commit/27479003b85432022c68e9582732354f52fd798b))

### [1.0.2](https://www.github.com/yandex-cloud/axios-wrapper/compare/v1.0.1...v1.0.2) (2021-12-23)


### Bug Fixes

* **deps-dev:** bump axios from 0.19.2 to 0.21.2 ([4a045fa](https://www.github.com/yandex-cloud/axios-wrapper/commit/4a045fa427f99193a1226dabca1c9b7dffb08d73))

### [1.0.1](https://www.github.com/yandex-cloud/axios-wrapper/compare/v1.0.0...v1.0.1) (2021-12-23)


### Bug Fixes

* set correct scope for npm publish ([dfe5cdc](https://www.github.com/yandex-cloud/axios-wrapper/commit/dfe5cdc915e79e4bc95af7a1b944b47232f3dfde))

## 1.0.0 (2021-12-23)

Initial release
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
This library provides a convenient wrapper around Axios adding automatic cancelling of concurrent requests
to its features.

## Install

```shell
npm install --save-dev @gravity-ui/axios-wrapper
```

## HTTP API

### Constructor parameters
Expand Down
Loading

0 comments on commit 7d24df1

Please sign in to comment.