mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-21 07:46:24 +00:00
Fix webpack build
Exclude dev resources from webpack build Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
parent
d42606fec4
commit
f5b4ac97c0
30
dev/prod/src/main-dev.ts
Normal file
30
dev/prod/src/main-dev.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
//
|
||||||
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
||||||
|
// Copyright © 2021 Hardcore Engineering, Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License. You may
|
||||||
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
//
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
//
|
||||||
|
|
||||||
|
import { createApp } from '@anticrm/ui'
|
||||||
|
import { configurePlatform } from './platform'
|
||||||
|
import { configurePlatformDev, configurePlatformDevServer } from './platform-dev'
|
||||||
|
|
||||||
|
configurePlatform()
|
||||||
|
|
||||||
|
if (process.env.CLIENT_TYPE === 'dev') {
|
||||||
|
configurePlatformDev()
|
||||||
|
}
|
||||||
|
if (process.env.CLIENT_TYPE === 'dev-server') {
|
||||||
|
configurePlatformDevServer()
|
||||||
|
}
|
||||||
|
|
||||||
|
createApp(document.body)
|
@ -18,5 +18,4 @@ import { createApp } from '@anticrm/ui'
|
|||||||
import { configurePlatform } from './platform'
|
import { configurePlatform } from './platform'
|
||||||
|
|
||||||
configurePlatform()
|
configurePlatform()
|
||||||
|
|
||||||
createApp(document.body)
|
createApp(document.body)
|
||||||
|
38
dev/prod/src/platform-dev.ts
Normal file
38
dev/prod/src/platform-dev.ts
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
//
|
||||||
|
// Copyright © 2020 Anticrm Platform Contributors.
|
||||||
|
//
|
||||||
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License. You may
|
||||||
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
//
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
//
|
||||||
|
|
||||||
|
import { addLocation } from '@anticrm/platform'
|
||||||
|
|
||||||
|
import login from '@anticrm/login'
|
||||||
|
import { clientId } from '@anticrm/client'
|
||||||
|
import { serverChunterId } from '@anticrm/server-chunter'
|
||||||
|
import { serverRecruitId } from '@anticrm/server-recruit'
|
||||||
|
import { serverViewId } from '@anticrm/server-view'
|
||||||
|
|
||||||
|
import { setMetadata } from '@anticrm/platform'
|
||||||
|
export function configurePlatformDev() {
|
||||||
|
setMetadata(login.metadata.OverrideLoginToken, process.env.LOGIN_TOKEN_DEV)
|
||||||
|
setMetadata(login.metadata.OverrideEndpoint, process.env.LOGIN_ENDPOINT_DEV)
|
||||||
|
console.log('Use DEV server')
|
||||||
|
addLocation(clientId, () => import(/* webpackChunkName: "client-dev" */ '@anticrm/dev-client-resources'))
|
||||||
|
addLocation(serverChunterId, () => import(/* webpackChunkName: "server-chunter" */ '@anticrm/dev-server-chunter-resources'))
|
||||||
|
addLocation(serverRecruitId, () => import(/* webpackChunkName: "server-recruit" */ '@anticrm/server-recruit-resources'))
|
||||||
|
addLocation(serverViewId, () => import(/* webpackChunkName: "server-view" */ '@anticrm/server-view-resources'))
|
||||||
|
}
|
||||||
|
|
||||||
|
export function configurePlatformDevServer() {
|
||||||
|
console.log('Use Endpoint override:', process.env.LOGIN_ENDPOINT)
|
||||||
|
setMetadata(login.metadata.OverrideEndpoint, process.env.LOGIN_ENDPOINT)
|
||||||
|
}
|
@ -16,7 +16,6 @@
|
|||||||
import { addLocation } from '@anticrm/platform'
|
import { addLocation } from '@anticrm/platform'
|
||||||
|
|
||||||
import login, { loginId } from '@anticrm/login'
|
import login, { loginId } from '@anticrm/login'
|
||||||
import { clientId } from '@anticrm/client'
|
|
||||||
import { workbenchId } from '@anticrm/workbench'
|
import { workbenchId } from '@anticrm/workbench'
|
||||||
import { viewId } from '@anticrm/view'
|
import { viewId } from '@anticrm/view'
|
||||||
import { taskId } from '@anticrm/task'
|
import { taskId } from '@anticrm/task'
|
||||||
@ -27,10 +26,6 @@ import { activityId } from '@anticrm/activity'
|
|||||||
import { settingId } from '@anticrm/setting'
|
import { settingId } from '@anticrm/setting'
|
||||||
import { telegramId } from '@anticrm/telegram'
|
import { telegramId } from '@anticrm/telegram'
|
||||||
|
|
||||||
import { serverChunterId } from '@anticrm/server-chunter'
|
|
||||||
import { serverRecruitId } from '@anticrm/server-recruit'
|
|
||||||
import { serverViewId } from '@anticrm/server-view'
|
|
||||||
|
|
||||||
import '@anticrm/login-assets'
|
import '@anticrm/login-assets'
|
||||||
import '@anticrm/task-assets'
|
import '@anticrm/task-assets'
|
||||||
import '@anticrm/view-assets'
|
import '@anticrm/view-assets'
|
||||||
@ -52,23 +47,6 @@ export function configurePlatform() {
|
|||||||
setMetadata(login.metadata.TelegramUrl, process.env.TELEGRAM_URL ?? 'http://localhost:8086')
|
setMetadata(login.metadata.TelegramUrl, process.env.TELEGRAM_URL ?? 'http://localhost:8086')
|
||||||
setMetadata(login.metadata.OverrideEndpoint, process.env.LOGIN_ENDPOINT)
|
setMetadata(login.metadata.OverrideEndpoint, process.env.LOGIN_ENDPOINT)
|
||||||
|
|
||||||
if (process.env.CLIENT_TYPE === 'dev') {
|
|
||||||
setMetadata(login.metadata.OverrideLoginToken, process.env.LOGIN_TOKEN_DEV)
|
|
||||||
setMetadata(login.metadata.OverrideEndpoint, process.env.LOGIN_ENDPOINT_DEV)
|
|
||||||
console.log('Use DEV server')
|
|
||||||
addLocation(clientId, () => import(/* webpackChunkName: "client-dev" */ '@anticrm/dev-client-resources'))
|
|
||||||
addLocation(serverChunterId, () => import(/* webpackChunkName: "server-chunter" */ '@anticrm/dev-server-chunter-resources'))
|
|
||||||
addLocation(serverRecruitId, () => import(/* webpackChunkName: "server-recruit" */ '@anticrm/server-recruit-resources'))
|
|
||||||
addLocation(serverViewId, () => import(/* webpackChunkName: "server-view" */ '@anticrm/server-view-resources'))
|
|
||||||
} else {
|
|
||||||
if (process.env.CLIENT_TYPE === 'dev-server') {
|
|
||||||
console.log('Use Endpoint override:', process.env.LOGIN_ENDPOINT)
|
|
||||||
setMetadata(login.metadata.OverrideEndpoint, process.env.LOGIN_ENDPOINT)
|
|
||||||
}
|
|
||||||
console.log('Use server')
|
|
||||||
addLocation(clientId, () => import(/* webpackChunkName: "client" */ '@anticrm/client-resources'))
|
|
||||||
}
|
|
||||||
|
|
||||||
addLocation(loginId, () => import(/* webpackChunkName: "login" */ '@anticrm/login-resources'))
|
addLocation(loginId, () => import(/* webpackChunkName: "login" */ '@anticrm/login-resources'))
|
||||||
addLocation(workbenchId, () => import(/* webpackChunkName: "workbench" */ '@anticrm/workbench-resources'))
|
addLocation(workbenchId, () => import(/* webpackChunkName: "workbench" */ '@anticrm/workbench-resources'))
|
||||||
addLocation(viewId, () => import(/* webpackChunkName: "view" */ '@anticrm/view-resources'))
|
addLocation(viewId, () => import(/* webpackChunkName: "view" */ '@anticrm/view-resources'))
|
||||||
|
@ -23,12 +23,13 @@ const DefinePlugin = require('webpack').DefinePlugin
|
|||||||
const mode = process.env.NODE_ENV || 'development'
|
const mode = process.env.NODE_ENV || 'development'
|
||||||
const prod = mode === 'production'
|
const prod = mode === 'production'
|
||||||
const devServer = (process.env.CLIENT_TYPE ?? '') === 'dev-server'
|
const devServer = (process.env.CLIENT_TYPE ?? '') === 'dev-server'
|
||||||
|
const dev = (process.env.CLIENT_TYPE ?? '') === 'dev' || devServer
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
entry: {
|
entry: {
|
||||||
bundle: [
|
bundle: [
|
||||||
'@anticrm/theme/styles/global.scss',
|
'@anticrm/theme/styles/global.scss',
|
||||||
'./src/main.ts'
|
...(dev ? ['./src/main-dev.ts']: ['./src/main.ts'] )
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
|
Loading…
Reference in New Issue
Block a user