mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-11-27 05:39:55 +08:00
chore: move in gitpod config
This commit is contained in:
parent
899de768f0
commit
cca94c85ad
16
.gitpod.yml
16
.gitpod.yml
@ -1,6 +1,6 @@
|
||||
tasks:
|
||||
- init: yarn install
|
||||
command: yarn dev --config webpack.gitpod.config.ts
|
||||
command: yarn dev
|
||||
- init: composer install
|
||||
command: |
|
||||
cp .env.example .env
|
||||
@ -26,13 +26,13 @@ github:
|
||||
|
||||
vscode:
|
||||
extensions:
|
||||
- "editorconfig.editorconfig"
|
||||
- "eamodio.gitlens"
|
||||
- "bmewburn.vscode-intelephense-client"
|
||||
- "esbenp.prettier-vscode"
|
||||
- "jpoissonnier.vscode-styled-components"
|
||||
- "mblode.twig-language-2"
|
||||
- "felixfbecker.php-debug"
|
||||
- 'editorconfig.editorconfig'
|
||||
- 'eamodio.gitlens'
|
||||
- 'bmewburn.vscode-intelephense-client'
|
||||
- 'esbenp.prettier-vscode'
|
||||
- 'jpoissonnier.vscode-styled-components'
|
||||
- 'mblode.twig-language-2'
|
||||
- 'felixfbecker.php-debug'
|
||||
|
||||
ports:
|
||||
- port: 8080
|
||||
|
@ -1,5 +1,6 @@
|
||||
import * as path from 'path'
|
||||
import * as webpack from 'webpack'
|
||||
import { execSync } from 'child_process'
|
||||
import MiniCssExtractPlugin from 'mini-css-extract-plugin'
|
||||
import CssMinimizerPlugin from 'css-minimizer-webpack-plugin'
|
||||
import HtmlWebpackPlugin from 'html-webpack-plugin'
|
||||
@ -12,7 +13,12 @@ interface Env {
|
||||
|
||||
export default function (env?: Env): webpack.Configuration[] {
|
||||
const isDev = !env?.production
|
||||
const htmlPublicPath = isDev ? '//localhost:8080/app/' : '{{ cdn_base }}/app/'
|
||||
const isGitpod = 'GITPOD_REPO_ROOT' in process.env
|
||||
const htmlPublicPath = isDev
|
||||
? isGitpod
|
||||
? `${execSync('gp url 8080')}/app/`
|
||||
: '//localhost:8080/app/'
|
||||
: '{{ cdn_base }}/app/'
|
||||
|
||||
return [
|
||||
{
|
||||
@ -145,6 +151,7 @@ export default function (env?: Env): webpack.Configuration[] {
|
||||
hot: true,
|
||||
hotOnly: true,
|
||||
stats: 'errors-warnings',
|
||||
allowedHosts: isGitpod ? ['localhost', '.gitpod.io'] : undefined,
|
||||
},
|
||||
stats: 'errors-warnings',
|
||||
ignoreWarnings: [/size limit/i],
|
||||
|
@ -1,191 +0,0 @@
|
||||
import * as path from 'path'
|
||||
import * as webpack from 'webpack'
|
||||
import { execSync } from 'child_process'
|
||||
import MiniCssExtractPlugin from 'mini-css-extract-plugin'
|
||||
import CssMinimizerPlugin from 'css-minimizer-webpack-plugin'
|
||||
import HtmlWebpackPlugin from 'html-webpack-plugin'
|
||||
import HtmlWebpackEnhancementPlugin from './tools/HtmlWebpackEnhancementPlugin'
|
||||
import SyncMetaJsPlugin from './tools/SyncMetaJsPlugin'
|
||||
|
||||
interface Env {
|
||||
production?: boolean
|
||||
}
|
||||
|
||||
export default function (env?: Env): webpack.Configuration[] {
|
||||
const isDev = !env?.production
|
||||
const htmlPublicPath = isDev ? `${execSync('gp url 8080')}/app/` : '{{ cdn_base }}/app/'
|
||||
|
||||
return [
|
||||
{
|
||||
name: 'app',
|
||||
mode: isDev ? 'development' : 'production',
|
||||
entry: {
|
||||
app: ['react-hot-loader/patch', '@/index.tsx'],
|
||||
style: ['@/styles/common.css'],
|
||||
home: '@/scripts/homePage.ts',
|
||||
'home-css': '@/styles/home.css',
|
||||
spectre: [
|
||||
'spectre.css/dist/spectre.min.css',
|
||||
'@/fonts/minecraft.css',
|
||||
'@/styles/spectre.css',
|
||||
],
|
||||
},
|
||||
output: {
|
||||
path: `${__dirname}/public/app`,
|
||||
publicPath: '/app/',
|
||||
filename: isDev ? '[name].js' : '[name].[contenthash:7].js',
|
||||
chunkFilename: isDev ? '[id].js' : '[id].[contenthash:7].js',
|
||||
crossOriginLoading: 'anonymous',
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.tsx?$/,
|
||||
loader: 'ts-loader',
|
||||
options: {
|
||||
configFile: isDev ? 'tsconfig.dev.json' : 'tsconfig.build.json',
|
||||
transpileOnly: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
test: /\.css$/,
|
||||
use: [
|
||||
isDev ? 'style-loader' : MiniCssExtractPlugin.loader,
|
||||
{
|
||||
loader: 'css-loader',
|
||||
options: {
|
||||
importLoaders: 1,
|
||||
},
|
||||
},
|
||||
'postcss-loader',
|
||||
],
|
||||
},
|
||||
{
|
||||
test: /\.(png|webp|svg|woff2?|eot|ttf)$/,
|
||||
type: 'asset',
|
||||
},
|
||||
],
|
||||
},
|
||||
plugins: [
|
||||
new MiniCssExtractPlugin({
|
||||
filename: isDev ? '[name].css' : '[name].[contenthash:7].css',
|
||||
chunkFilename: isDev ? '[id].css' : '[id].[contenthash:7].css',
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
templateContent: isDev
|
||||
? ''
|
||||
: `
|
||||
<script src="https://cdn.jsdelivr.net/npm/react@17.0.1/umd/react.production.min.js" integrity="sha256-Ag0WTc8xFszCJo1qbkTKp3wBMdjpjogsZDAhnSge744=" crossorigin></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/react-dom@17.0.1/umd/react-dom.production.min.js" integrity="sha256-k8tzaSH8ucPwbsHEO4Wk5szE9zERNVz3XQynfyT66O0=" crossorigin></script>`,
|
||||
chunks: ['app'],
|
||||
scriptLoading: 'blocking',
|
||||
filename: 'app.twig',
|
||||
publicPath: htmlPublicPath,
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
templateContent: '',
|
||||
chunks: ['style'],
|
||||
filename: 'style.twig',
|
||||
publicPath: htmlPublicPath,
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
templateContent: '',
|
||||
chunks: ['home'],
|
||||
scriptLoading: 'blocking',
|
||||
filename: 'home.twig',
|
||||
publicPath: htmlPublicPath,
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
templateContent: '',
|
||||
chunks: ['home-css'],
|
||||
filename: 'home-css.twig',
|
||||
publicPath: htmlPublicPath,
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
templateContent: '',
|
||||
chunks: ['spectre'],
|
||||
filename: 'spectre.twig',
|
||||
publicPath: htmlPublicPath,
|
||||
}),
|
||||
new HtmlWebpackEnhancementPlugin(),
|
||||
new webpack.DefinePlugin({
|
||||
'window.Deno': 'true',
|
||||
Deno: {
|
||||
args: [],
|
||||
build: {},
|
||||
version: {},
|
||||
},
|
||||
'process.platform': '"browser"',
|
||||
}),
|
||||
].concat(isDev ? [new webpack.HotModuleReplacementPlugin()] : []),
|
||||
resolve: {
|
||||
extensions: ['.js', '.ts', '.tsx'],
|
||||
alias: {
|
||||
'react-dom': '@hot-loader/react-dom',
|
||||
'@': path.resolve(__dirname, 'resources/assets/src'),
|
||||
readline: '@/scripts/cli/readline.ts',
|
||||
prompts: 'prompts/lib/index.js',
|
||||
assert: false,
|
||||
},
|
||||
},
|
||||
externals: Object.assign(
|
||||
{ jquery: 'jQuery', bootstrap: 'bootstrap', 'admin-lte': 'adminlte' },
|
||||
isDev
|
||||
? {}
|
||||
: {
|
||||
react: 'React',
|
||||
'react-dom': 'ReactDOM',
|
||||
},
|
||||
) as Record<string, string>,
|
||||
optimization: {
|
||||
// @ts-ignore
|
||||
minimizer: [new CssMinimizerPlugin({}), '...'],
|
||||
},
|
||||
experiments: {
|
||||
syncWebAssembly: true,
|
||||
},
|
||||
devtool: isDev ? 'eval-source-map' : false,
|
||||
devServer: {
|
||||
headers: {
|
||||
'Access-Control-Allow-Origin': '*',
|
||||
},
|
||||
host: '0.0.0.0',
|
||||
hot: true,
|
||||
hotOnly: true,
|
||||
stats: 'errors-warnings',
|
||||
allowedHosts: ['localhost', '.gitpod.io'],
|
||||
},
|
||||
stats: 'errors-warnings',
|
||||
ignoreWarnings: [/size limit/i],
|
||||
},
|
||||
{
|
||||
name: 'meta',
|
||||
mode: isDev ? 'development' : 'production',
|
||||
entry: {
|
||||
meta: './resources/assets/src/scripts/meta.ts',
|
||||
sw: './resources/assets/src/scripts/sw.ts',
|
||||
},
|
||||
output: {
|
||||
path: `${__dirname}/public`,
|
||||
filename: '[name].js',
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.ts$/,
|
||||
loader: 'ts-loader',
|
||||
options: {
|
||||
configFile: 'tsconfig.build.json',
|
||||
transpileOnly: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
plugins: [new SyncMetaJsPlugin()],
|
||||
resolve: {
|
||||
extensions: ['.js', '.ts'],
|
||||
},
|
||||
stats: 'errors-warnings',
|
||||
},
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user