Skip to content

Commit

Permalink
chore: updated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewcourtice committed Jun 2, 2024
1 parent 45055b7 commit 7a75632
Show file tree
Hide file tree
Showing 25 changed files with 9,052 additions and 7,678 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"**/node_modules": true
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"[vue]": {
"editor.semanticHighlighting.enabled": false
Expand Down
363 changes: 0 additions & 363 deletions .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

This file was deleted.

801 changes: 0 additions & 801 deletions .yarn/releases/yarn-3.2.4.cjs

This file was deleted.

894 changes: 894 additions & 0 deletions .yarn/releases/yarn-4.2.2.cjs

Large diffs are not rendered by default.

8 changes: 2 additions & 6 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
nodeLinker: node-modules

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"

yarnPath: .yarn/releases/yarn-3.2.4.cjs
enableGlobalCache: false
yarnPath: .yarn/releases/yarn-4.2.2.cjs
16 changes: 8 additions & 8 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@
"@harlem/extension-storage": "^3.0.0",
"@harlem/extension-trace": "^3.0.0",
"@harlem/extension-transaction": "^3.0.0",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"flex-layout-attribute": "^1.0.3",
"harlem": "^3.0.0",
"vue": "^3.2.47"
"vue": "^3.4.27"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.1.0",
"@vue/compiler-sfc": "^3.2.47",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.59.3",
"vite": "^4.2.0"
"@vitejs/plugin-vue": "^5.0.5",
"@vue/compiler-sfc": "^3.4.27",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.77.4",
"vite": "^5.2.12"
}
}
4 changes: 2 additions & 2 deletions app/src/stores/app/getters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from './store';

import {
utcToZonedTime,
toZonedTime,
} from 'date-fns-tz';

export const timezones = getter(GETTERS.timezones, ({ timezones, clocks }) => {
Expand All @@ -22,6 +22,6 @@ export const timezones = getter(GETTERS.timezones, ({ timezones, clocks }) => {
export const clocks = getter(GETTERS.clocks, ({ clocks, time }) => {
return clocks.map(timezone => ({
timezone,
time: utcToZonedTime(time, timezone),
time: toZonedTime(time, timezone),
}));
});
3 changes: 3 additions & 0 deletions build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ const baseOptions = {
target: 'es2018',
sourcemap: false,
clean: false,
external: [
'vue',
],
};

/**
Expand Down
4 changes: 2 additions & 2 deletions core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
"@harlem/utilities": "^3.1.8"
},
"peerDependencies": {
"vue": "^3.2.0"
"vue": "^3.4.0"
},
"devDependencies": {
"vue": "^3.2.47"
"vue": "^3.4.27"
}
}
6 changes: 3 additions & 3 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
"build": "vitepress build src"
},
"devDependencies": {
"dotenv": "^16.0.3",
"vitepress": "^1.0.0-alpha.60"
"dotenv": "^16.4.5",
"vitepress": "^1.2.2"
},
"dependencies": {
"@vueuse/core": "^9.13.0"
"@vueuse/core": "^10.10.0"
}
}
4 changes: 2 additions & 2 deletions examples/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"@harlem/extension-action": "^3.0.0",
"@harlem/extension-compose": "^3.0.0",
"@harlem/extension-storage": "^3.0.0",
"@nuxtjs/harlem": "^1.2.0"
"@nuxtjs/harlem": "^1.3.1"
},
"devDependencies": {
"nuxt": "^3.3.1"
"nuxt": "^3.11.2"
}
}
6 changes: 3 additions & 3 deletions examples/vite-ts-actions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
"@harlem/extension-compose": "^3.0.0",
"@harlem/extension-storage": "^3.0.0",
"@harlem/plugin-devtools": "^3.0.0",
"vue": "^3.2.47"
"vue": "^3.4.27"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.1.0",
"vite": "^4.2.0"
"@vitejs/plugin-vue": "^5.0.5",
"vite": "^5.2.12"
}
}
6 changes: 3 additions & 3 deletions examples/vite-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
"@harlem/extension-compose": "^3.0.0",
"@harlem/extension-storage": "^3.0.0",
"@harlem/plugin-devtools": "^3.0.0",
"vue": "^3.2.47"
"vue": "^3.4.27"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.1.0",
"vite": "^4.2.0"
"@vitejs/plugin-vue": "^5.0.5",
"vite": "^5.2.12"
}
}
4 changes: 2 additions & 2 deletions extensions/action/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@
},
"peerDependencies": {
"@harlem/core": "^3.0.0",
"vue": "^3.2.0"
"vue": "^3.4.0"
},
"devDependencies": {
"@harlem/core": "^3.1.8",
"@harlem/testing": "^3.0.0",
"vue": "^3.2.47"
"vue": "^3.4.27"
}
}
4 changes: 2 additions & 2 deletions extensions/compose/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@
},
"peerDependencies": {
"@harlem/core": "^3.0.0",
"vue": "^3.2.0"
"vue": "^3.4.0"
},
"devDependencies": {
"@harlem/core": "^3.1.8",
"vue": "^3.2.47"
"vue": "^3.4.27"
}
}
4 changes: 2 additions & 2 deletions extensions/history/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@
},
"peerDependencies": {
"@harlem/core": "^3.0.0",
"vue": "^3.2.0"
"vue": "^3.4.0"
},
"devDependencies": {
"@harlem/core": "^3.1.8",
"@harlem/testing": "^3.0.0",
"vue": "^3.2.47"
"vue": "^3.4.27"
}
}
4 changes: 2 additions & 2 deletions extensions/lazy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@
},
"peerDependencies": {
"@harlem/core": "^3.0.0",
"vue": "^3.2.0"
"vue": "^3.4.0"
},
"devDependencies": {
"@harlem/core": "^3.1.8",
"@harlem/testing": "^3.0.0",
"vue": "^3.2.47"
"vue": "^3.4.27"
}
}
4 changes: 2 additions & 2 deletions harlem/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
"@harlem/plugin-devtools": "^3.1.8"
},
"peerDependencies": {
"vue": "^3.2.0"
"vue": "^3.4.0"
},
"devDependencies": {
"vue": "^3.2.47"
"vue": "^3.4.27"
}
}
8 changes: 0 additions & 8 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
{
"version": "3.1.8",
"npmClient": "yarn",
"useWorkspaces": true,
"packages": [
"core",
"harlem",
"packages/*",
"extensions/*",
"plugins/*"
],
"command": {
"publish": {
"graphType": "all"
Expand Down
45 changes: 23 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Powerfully simple global state management for Vue 3",
"repository": "https://github.com/andrewcourtice/harlem.git",
"author": "Andrew Courtice <[email protected]>",
"packageManager": "yarn@3.2.4",
"packageManager": "yarn@4.2.2",
"license": "MIT",
"private": true,
"workspaces": [
Expand All @@ -27,26 +27,27 @@
"docs": "node ./.scripts/generate-docs.mjs"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/fs-extra": "^11.0.1",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitest/coverage-c8": "^0.29.3",
"c8": "^7.13.0",
"esbuild-plugin-replace": "^1.3.0",
"eslint": "^8.36.0",
"eslint-plugin-vue": "^9.9.0",
"fs-extra": "^11.1.0",
"husky": "^8.0.3",
"jsdom": "^21.1.1",
"lerna": "^6.5.1",
"standard-changelog": "^2.0.27",
"tsup": "^6.7.0",
"typedoc": "^0.23.28",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^5.0.2",
"vitest": "^0.29.3",
"vue-eslint-parser": "^9.1.0"
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/fs-extra": "^11.0.4",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^1.6.0",
"c8": "^9.1.0",
"esbuild-plugin-replace": "^1.4.0",
"eslint": "^9.4.0",
"eslint-plugin-vue": "^9.26.0",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"lerna": "^8.1.3",
"standard-changelog": "^6.0.0",
"tsup": "^8.0.2",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^4.0.3",
"typescript": "^5.4.5",
"vitest": "^1.6.0",
"vue-eslint-parser": "^9.4.3"
}
}
2 changes: 1 addition & 1 deletion packages/testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
},
"devDependencies": {
"@harlem/core": "^3.0.0",
"vue": "^3.2.47"
"vue": "^3.4.27"
}
}
4 changes: 2 additions & 2 deletions packages/utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"vue": "^3.2.0"
"vue": "^3.4.0"
},
"devDependencies": {
"vue": "^3.2.47"
"vue": "^3.4.27"
}
}
2 changes: 1 addition & 1 deletion plugins/devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
},
"dependencies": {
"@harlem/utilities": "^3.1.8",
"@vue/devtools-api": "^6.5.0"
"@vue/devtools-api": "^6.6.2"
},
"devDependencies": {
"@harlem/core": "^3.1.8"
Expand Down
2 changes: 1 addition & 1 deletion plugins/devtools/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ function getInspectorEditHook(application: App, stores: InternalStores): EditHoo
};
}

function getMutationHook(api: DevtoolsPluginApi<unknown>, logType?: LogType): EventHandler<TriggerEventData> {
function getMutationHook(api: DevtoolsPluginApi<any>, logType?: LogType): EventHandler<TriggerEventData> {
return payload => {
if (!payload) {
return;
Expand Down
Loading

0 comments on commit 7a75632

Please sign in to comment.