Skip to content

Commit

Permalink
Release: release/1.10 to develop (#1740)
Browse files Browse the repository at this point in the history
  • Loading branch information
zoe-icu committed May 7, 2024
2 parents 63051dc + e37c60c commit e7a0954
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 432 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"typescript.tsdk": ".yarn/sdks/typescript/lib",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"editor.formatOnSave": false,
"[typescriptreact]": {
Expand Down
4 changes: 2 additions & 2 deletions packages/datasheet/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const sentryWebpackPluginOptions = {
release: process.env.WEB_CLIENT_VERSION ?? '',
silent: false, // Suppresses all logs
hideSourceMaps: true,
debug: true
debug: false

// For all available options, see:
// https://github.com/getsentry/sentry-webpack-plugin#options.
Expand Down Expand Up @@ -120,4 +120,4 @@ const plugins = [
];

const config = () => plugins.reduce((acc, next) => next(acc), nextConfig);
module.exports = isProd ? withSentryConfig(config, sentryWebpackPluginOptions, sentryWebpackPluginOptions) : config;
module.exports = isProd && process.env.SENTRY_AUTH_TOKEN_VIKA ? withSentryConfig(config, sentryWebpackPluginOptions, sentryWebpackPluginOptions) : config;
1 change: 1 addition & 0 deletions packaging/Dockerfile.room-server
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ FROM apitable/node:v16.15.0 AS builder
WORKDIR /app

COPY --from=deps /app/node_modules ./node_modules
COPY --from=deps /app/patches ./patches
COPY --from=deps /app/packages/i18n-lang/node_modules ./packages/i18n-lang/node_modules
COPY --from=deps /app/packages/core/node_modules ./packages/core/node_modules
COPY --from=deps /app/packages/room-server/node_modules ./packages/room-server/node_modules
Expand Down
1 change: 1 addition & 0 deletions packaging/Dockerfile.storybook
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ FROM apitable/nodepy:16.15.0-alpine AS builder

WORKDIR /app

COPY --from=deps /workspace-install/patches ./patches
COPY --from=deps /workspace-install/node_modules ./node_modules
COPY --from=deps /workspace-install/packages/components/node_modules ./packages/components/node_modules

Expand Down
1 change: 1 addition & 0 deletions packaging/Dockerfile.web-server
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ WORKDIR /app
COPY ./pnpm-workspace.yaml ./build.js ./package.json ./pnpm-lock.yaml ./nx.json ./common-tsconfig.json ./tsconfig.json ./.eslintrc ./
COPY packages/ ./packages/

COPY --from=deps /workspace-install/patches ./patches
COPY --from=deps /workspace-install/node_modules ./node_modules
COPY --from=deps /workspace-install/packages/datasheet/node_modules ./packages/datasheet/node_modules
COPY --from=deps /workspace-install/packages/components/node_modules ./packages/components/node_modules
Expand Down
Loading

0 comments on commit e7a0954

Please sign in to comment.