From 44e67f6391048aa0c26e3e5201c328de489f5796 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 12:46:32 +0000 Subject: [PATCH 1/3] chore(deps): bump @maxgraph/core from 0.3.0 to 0.4.0 Bumps [@maxgraph/core](https://github.com/maxGraph/maxGraph) from 0.3.0 to 0.4.0. - [Release notes](https://github.com/maxGraph/maxGraph/releases) - [Changelog](https://github.com/maxGraph/maxGraph/blob/development/CHANGELOG.md) - [Commits](https://github.com/maxGraph/maxGraph/compare/v0.3.0...v0.4.0) --- updated-dependencies: - dependency-name: "@maxgraph/core" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 12 ++++-------- package.json | 2 +- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index d246d58..cc91524 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "./projects/*" ], "dependencies": { - "@maxgraph/core": "0.3.0" + "@maxgraph/core": "0.4.0" }, "devDependencies": { "typescript": "~5.2.2" @@ -590,9 +590,9 @@ ] }, "node_modules/@maxgraph/core": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@maxgraph/core/-/core-0.3.0.tgz", - "integrity": "sha512-KRoB7eSd1Md9NFWjkUyUODPnE1LBLGLQ0KGO0RCsOD5Bf1vkC01+I873yvDqYWmfYk0vk2wWlp41m0pEsg9HzA==" + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@maxgraph/core/-/core-0.4.0.tgz", + "integrity": "sha512-fBFS+zg4g+39yuetsxOkB5t6w0HPBmFET2jCmRuH2fIehAlfbntjsBlTvOCVc59zx07yLSdWycblFpRcRYdH/w==" }, "node_modules/@mischnic/json-sourcemap": { "version": "0.1.1", @@ -8414,10 +8414,6 @@ "vite": "~4.4.11" } }, - "projects/sveltekit-ts/node_modules/@maxgraph/core": { - "version": "0.4.0", - "license": "Apache-2.0" - }, "projects/vitejs-ts": { "name": "maxgraph-ts-example-built-with-vite", "devDependencies": { diff --git a/package.json b/package.json index fb160ca..e3e4b6e 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "./projects/*" ], "dependencies": { - "@maxgraph/core": "0.3.0" + "@maxgraph/core": "0.4.0" }, "devDependencies": { "typescript": "~5.2.2" From 80c7c2ecfb0013ee9e260c92eb152c06b345efb6 Mon Sep 17 00:00:00 2001 From: Thomas Bouffard <27200110+tbouffard@users.noreply.github.com> Date: Fri, 13 Oct 2023 14:50:28 +0200 Subject: [PATCH 2/3] sveltekit: don't declare maxgraph as all projects now use the latest version --- package-lock.json | 3 --- projects/sveltekit-ts/package.json | 3 --- 2 files changed, 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index cc91524..da44c16 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8402,9 +8402,6 @@ }, "projects/sveltekit-ts": { "name": "maxgraph-ts-example-built-with-sveltekit", - "dependencies": { - "@maxgraph/core": "0.4.0" - }, "devDependencies": { "@sveltejs/adapter-auto": "~2.1.0", "@sveltejs/kit": "~1.25.2", diff --git a/projects/sveltekit-ts/package.json b/projects/sveltekit-ts/package.json index a2b2bd4..2e6abaf 100644 --- a/projects/sveltekit-ts/package.json +++ b/projects/sveltekit-ts/package.json @@ -9,9 +9,6 @@ "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch" }, - "dependencies": { - "@maxgraph/core": "0.4.0" - }, "devDependencies": { "@sveltejs/adapter-auto": "~2.1.0", "@sveltejs/kit": "~1.25.2", From dfa10e9ef465813bd5ab6fa71dd0e9a5ceaf0fb5 Mon Sep 17 00:00:00 2001 From: Thomas Bouffard <27200110+tbouffard@users.noreply.github.com> Date: Fri, 13 Oct 2023 14:52:27 +0200 Subject: [PATCH 3/3] gh wf: trigger when root package.json files change [no ci] --- .github/workflows/check-typescript-projects.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-typescript-projects.yml b/.github/workflows/check-typescript-projects.yml index 6c2d11c..6a32726 100644 --- a/.github/workflows/check-typescript-projects.yml +++ b/.github/workflows/check-typescript-projects.yml @@ -8,15 +8,19 @@ on: - main paths: - '.github/workflows/check-typescript-projects.yml' - - '.nvmrc' - 'projects/**/*' + - '.nvmrc' + - 'package.json' + - 'package-lock.json' pull_request: branches: - main paths: - '.github/workflows/check-typescript-projects.yml' - - '.nvmrc' - 'projects/**/*' + - '.nvmrc' + - 'package.json' + - 'package-lock.json' jobs: build_maxgraph_dev_package: