Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump vite from 4.3.5 to 4.3.9 #360

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
include $(SELF_DIR)/Makefile.base.mk

bootstrap-infra:
npx envinfo --system --npmPackages --binaries --browsers:
pnpm nx run tools:bootstrap-infra
pnpm nx run --output-style=stream infra-shared:bootstrap

Expand Down
4 changes: 2 additions & 2 deletions packages/infra/infra-shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"type": "commonjs",
"scripts": {
"bootstrap": "cdk deploy sb-bootstrap",
"deploy:global": "cdk deploy *GlobalStack && cdk deploy *UsEastResourcesStack",
"diff:global": "cdk diff *GlobalStack && cdk diff *UsEastResourcesStack",
"deploy:global": "cdk deploy *GlobalStack",
"diff:global": "cdk diff *GlobalStack",
"deploy:main": "cdk deploy *MainStack",
"diff:main": "cdk diff *MainStack",
"deploy:db": "cdk deploy *DbStack",
Expand Down
2 changes: 0 additions & 2 deletions packages/infra/infra-shared/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { EnvComponentsStack } from './stacks/components';
import { MainDatabase } from './stacks/db/mainDatabase';
import { MainECSCluster } from './stacks/main/mainEcsCluster';
import { MainKmsKey } from './stacks/main/mainKmsKey';
import { UsEastResourcesStack } from './stacks/usEastResources';

export * from './lib/names';

Expand All @@ -14,6 +13,5 @@ export {
MainECSCluster,
EnvComponentsStack,
FargateServiceResources,
UsEastResourcesStack,
WebAppCloudFrontDistribution,
};
10 changes: 0 additions & 10 deletions packages/infra/infra-shared/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import {
} from '@sb/infra-core';

import { GlobalStack } from './stacks/global';
import { UsEastResourcesStack } from './stacks/usEastResources';
import { EnvMainStack } from './stacks/main';
import { EnvDbStack } from './stacks/db';
import { EnvComponentsStack } from './stacks/components';
Expand All @@ -23,15 +22,6 @@ import { BootstrapStack } from './stacks/bootstrap';
envSettings,
});

new UsEastResourcesStack(
app,
getGlobalStackName('UsEastResourcesStack', envSettings),
{
envSettings,
env: { region: 'us-east-1' },
}
);

new EnvMainStack(app, getEnvStackName('MainStack', envSettings), {
envSettings,
});
Expand Down

This file was deleted.

This file was deleted.

61 changes: 0 additions & 61 deletions packages/infra/infra-shared/src/stacks/usEastResources/stack.ts

This file was deleted.

2 changes: 1 addition & 1 deletion packages/webapp-libs/webapp-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
"styled-theming": "2.2.0",
"tailwind-merge": "^1.12.0",
"ts-jest": "28.0.5",
"vite": "^4.3.5",
"vite": "^4.3.9",
"@nx/js": "^16.3.2",
"@nx/react": "^16.3.2",
"@nx/jest": "^16.3.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/webapp-libs/webapp-emails/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-polyfill-node": "^0.12.0",
"storybook": "^7.0.23",
"vite": "^4.3.5",
"vite": "^4.3.9",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.5"
Expand Down
2 changes: 1 addition & 1 deletion packages/webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
"stylelint-processor-styled-components": "^1.10.0",
"tailwindcss": "^3.3.2",
"ts-jest": "28.0.5",
"vite": "^4.3.5",
"vite": "^4.3.9",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.5"
Expand Down
Loading
Loading