Skip to content

Commit

Permalink
undo package updates
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonreid committed Aug 21, 2023
1 parent beb80df commit 3a6ff64
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 22 deletions.
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"dev": "tsc -w & tsc-alias -w & vite build -w",
"build": "tsc && tsc-alias && vite build",
"test": "vitest",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"types": "vue-tsc --noEmit",
"changelog": "auto-changelog --package --commit-limit 0",
"version": "npm run changelog && git add CHANGELOG.md"
Expand All @@ -45,19 +45,19 @@
"@types/lodash.debounce": "4.0.7",
"@types/lodash.isequal": "^4.5.6",
"auto-changelog": "^2.3.0",
"eslint": "^8.6.0",
"eslint": "^8.5.0",
"lodash.isequal": "^4.5.0",
"ts-node": "^10.7.0",
"tsc-alias": "1.8.7",
"typescript": "5.1.6",
"vite": "4.4.9",
"vitest": "^0.34.2",
"vue-tsc": "1.8.8"
"ts-node": "^10.4.0",
"tsc-alias": "^1.7.1",
"typescript": "^5.0.3",
"vite": "^4.0.3",
"vitest": "^0.34.1",
"vue-tsc": "^1.0.9"
},
"peerDependencies": {
"lodash.debounce": "^4.0.8",
"vue": "^3.3.4",
"vue-router": "^4.1.6"
"vue": "^3.2.36",
"vue-router": "^4.0.15"
},
"peerDependenciesMeta": {
"vue-router": {
Expand Down
3 changes: 1 addition & 2 deletions src/usePositionStickyObserver/usePositionStickyObserver.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Ref, computed, onMounted, ref, MaybeRefOrGetter, toValue } from 'vue'
import { Ref, computed, onMounted, ref, toValue } from 'vue'
import { useIntersectionObserver } from '@/useIntersectionObserver'

export type UsePositionStickyObserverResponse = {
Expand Down Expand Up @@ -26,7 +26,6 @@ export function usePositionStickyObserver(
}

const { rootMargin, boundingElement } = toValue(options)
console.log('in deal', boundingElement)
const boundingElementRef = toValue(boundingElement)

return {
Expand Down

0 comments on commit 3a6ff64

Please sign in to comment.