Skip to content

Commit

Permalink
fix: option #2 - don't bundle axios (#11)
Browse files Browse the repository at this point in the history
* fix: don't bundle axios

* chore: bump version
  • Loading branch information
Saschl authored Jan 29, 2022
1 parent 4366ef5 commit 99995d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flybywiresim/api-client",
"version": "0.16.1",
"version": "0.16.2",
"description": "Client library for the FlyByWire Simulations API",
"main": "dist/index.js",
"module": "dist/index.esm.js",
Expand Down Expand Up @@ -28,6 +28,9 @@
],
"author": "FlyByWire Simulations",
"license": "MIT",
"dependencies": {
"axios": "^0.21.4"
},
"devDependencies": {
"@flybywiresim/eslint-config": "^0.2.2",
"@rollup/plugin-commonjs": "^20.0.0",
Expand All @@ -36,7 +39,6 @@
"@types/es6-promise": "^3.3.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/parser": "^4.31.2",
"axios": "^0.21.4",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.4.2",
"rollup": "^2.57.0",
Expand Down
4 changes: 0 additions & 4 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
"use strict";

import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import typescript from "rollup-plugin-typescript2";
import json from "@rollup/plugin-json";

import packageJson from "./package.json";

Expand All @@ -22,8 +20,6 @@ export default {
}
],
plugins: [
resolve(),
json(),
commonjs(),
typescript({
useTsconfigDeclarationDir: true,
Expand Down

0 comments on commit 99995d5

Please sign in to comment.