Skip to content

Commit

Permalink
fix(🐛): Cleaner v1 export (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcandillon authored Sep 8, 2020
1 parent b200083 commit d7d4b44
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// babel.config.js
module.exports = {
presets: ["babel-preset-expo"],
plugins: [
]
plugins: [],
};
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ export * from "./Transitions";
export * from "./Math";
export * from "./Vector";
export { default as ReText } from "./ReText";
import "./v1";
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"types": ["react", "react-native", "jest"],
"skipLibCheck": true
},
"files": ["src/index.d.ts", "src/__tests__/index.ts", "src/v1/__tests__/index.ts"],
"files": ["src/index.d.ts", "src/__tests__/index.ts", "src/v1/__tests__/index.ts", "src/v1/index.ts"],
"include": ["src/index.ts", "node_modules/@types/jest"]
}

0 comments on commit d7d4b44

Please sign in to comment.