Skip to content

Commit

Permalink
Fix: lockfile Update
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyatea committed Jul 29, 2024
1 parent 6185230 commit 2ca5bff
Show file tree
Hide file tree
Showing 7 changed files with 1,295 additions and 1,103 deletions.
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@
},
"dependencies": {
"cssnano": "6.1.2",
"esbuild": "0.22.0",
"eslint-nibble": "^8.1.0",
"eslint-plugin-unused-imports": "^4.0.0",
"execa": "8.0.1",
"fast-glob": "3.3.2",
"ignore-walk": "6.0.5",
Expand Down
10 changes: 10 additions & 0 deletions packages/backend/migration/1722242747526-channelLocalOnly.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export class ChannelLocalOnly1722242747526 {
name = 'ChannelLocalOnly1722242747526'

async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "channel" ADD "isLocalOnly" boolean NOT NULL DEFAULT false`); }

async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "channel" DROP COLUMN "isLocalOnly"`);
}
}
1 change: 0 additions & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@
"@typescript-eslint/parser": "7.17.0",
"aws-sdk-client-mock": "4.0.1",
"cross-env": "7.0.3",
"eslint-plugin-import": "2.29.1",
"execa": "9.3.0",
"fkill": "9.0.0",
"jest": "29.7.0",
Expand Down
1 change: 0 additions & 1 deletion packages/frontend/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import tsParser from '@typescript-eslint/parser';
import parser from 'vue-eslint-parser';
import pluginVue from 'eslint-plugin-vue';
import pluginMisskey from '@misskey-dev/eslint-plugin';
import unusedImports from 'eslint-plugin-unused-imports';
import sharedConfig from '../shared/eslint.config.js';

export default [
Expand Down
2 changes: 0 additions & 2 deletions packages/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
"cropperjs": "2.0.0-rc.1",
"date-fns": "2.30.0",
"escape-regexp": "0.0.1",
"eslint-plugin-unused-imports": "^4.0.0",
"estree-walker": "3.0.3",
"eventemitter3": "5.0.1",
"idb-keyval": "6.2.1",
Expand Down Expand Up @@ -119,7 +118,6 @@
"acorn": "8.12.1",
"cross-env": "7.0.3",
"cypress": "13.13.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-vue": "9.27.0",
"fast-glob": "3.3.2",
"happy-dom": "10.0.3",
Expand Down
1 change: 0 additions & 1 deletion packages/sw/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"devDependencies": {
"@typescript-eslint/parser": "7.17.0",
"@typescript/lib-webworker": "npm:@types/[email protected]",
"eslint-plugin-import": "2.29.1",
"nodemon": "3.1.4",
"typescript": "5.5.4"
},
Expand Down
2,381 changes: 1,285 additions & 1,096 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

0 comments on commit 2ca5bff

Please sign in to comment.