Skip to content

Commit

Permalink
fix(fuselage-hooks): usePosition internals (#1027)
Browse files Browse the repository at this point in the history
Co-authored-by: Douglas Fabris <devfabris@gmail.com>
  • Loading branch information
tassoevan and dougfabris committed Apr 18, 2023
1 parent cde9a42 commit 5b17dac
Show file tree
Hide file tree
Showing 21 changed files with 813 additions and 617 deletions.
5 changes: 4 additions & 1 deletion packages/fuselage-hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@
"access": "public"
},
"scripts": {
"build": "rollup -c",
"build": "run-s .:build:clean .:build:rollup",
".:build:clean": "rimraf dist",
".:build:rollup": "rollup -c",
"lint": "lint",
"lint-and-fix": "lint-and-fix",
"lint-staged": "lint-staged",
Expand Down Expand Up @@ -64,6 +66,7 @@
"npm-run-all": "^4.1.5",
"prettier": "~2.8.7",
"react": "^17.0.2",
"rimraf": "~5.0.0",
"rollup": "~2.67.3",
"rollup-plugin-terser": "~7.0.2",
"testing-utils": "workspace:~",
Expand Down
4 changes: 3 additions & 1 deletion packages/fuselage-hooks/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ export default {
json(),
nodeResolve(),
commonjs(),
typescript(),
typescript({
tsconfig: 'tsconfig.build.json',
}),
],
};
270 changes: 0 additions & 270 deletions packages/fuselage-hooks/src/usePosition.spec.ts

This file was deleted.

0 comments on commit 5b17dac

Please sign in to comment.