Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

fix: rollup watch #148

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
1 change: 1 addition & 0 deletions packages/remax-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"@remax/postcss-px2units": "^0.2.0",
"acorn-walk": "^7.0.0",
"babel-plugin-transform-async-to-promises": "^0.8.14",
"chokidar": "^3.0.2",
"commander": "^2.19.0",
"ejs": "^2.6.1",
"lodash": "^4.17.11",
Expand Down
56 changes: 10 additions & 46 deletions packages/remax-cli/src/build/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,8 @@ import * as rollup from 'rollup';
import rollupConfig from './rollupConfig';
import getConfig from '../getConfig';
import { Context } from '../types';

const COLORS = {
red: '\x1b[31m',
green: '\x1b[32m',
blue: '\x1b[34m',
};
const RESET = '\x1b[0m';

const output = (
content: string | string[],
color: 'red' | 'green' | 'blue'
) => {
const message = Array.isArray(content) ? content : [content];
console.log(`${COLORS[color]}%s${RESET}`, ...message);
};
import runWatcher from './watcher';
import { output } from './utils/output';

export default async (argv: any, context?: Context) => {
const options = {
Expand All @@ -32,38 +19,15 @@ export default async (argv: any, context?: Context) => {
throw new Error(`Target ${argv.target} is not supported yet.`);
}

const rollupOptions = rollupConfig(options, argv, targetConfig, context);
if (argv.watch) {
const watcher = rollup.watch([
{
...rollupOptions,
watch: {
include: ['src/**', 'app.js', '*.config.js'],
},
},
]);

console.log('\x1b[34m%s\x1b[0m', '🚀 启动 watch');
const rollupOptions: rollup.RollupOptions = rollupConfig(
options,
argv,
targetConfig,
context
);

watcher.on('event', (event: any) => {
switch (event.code) {
case 'START':
output('🚚 编译...', 'blue');
break;
case 'END':
output('💡 完成', 'green');
break;
case 'ERROR':
case 'FATAL':
const { error } = event;
const name =
error.code === 'PLUGIN_ERROR' ? error.plugin : error.code;
output(`\n🚨 [${name}]: ${error.message}`, 'red');
throw error;
default:
break;
}
});
if (argv.watch) {
runWatcher(rollupOptions);
} else {
try {
output('🚀 开始 build...', 'blue');
Expand Down
14 changes: 14 additions & 0 deletions packages/remax-cli/src/build/utils/output.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const COLORS = {
red: '\x1b[31m',
green: '\x1b[32m',
blue: '\x1b[34m',
};
const RESET = '\x1b[0m';

export const output = (
content: string | string[],
color: 'red' | 'green' | 'blue'
) => {
const message = Array.isArray(content) ? content : [content];
console.log(`${COLORS[color]}%s${RESET}`, ...message);
};
83 changes: 83 additions & 0 deletions packages/remax-cli/src/build/watcher.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
import fs from 'fs';
import { RollupOptions, watch, RollupWatcher } from 'rollup';
import { output } from './utils/output';

let isBundleRunning = false;
let isFirstRunWatcher = true;

const rollupWatchFiles = ['src/**', 'app.js', '*.config.js'];
const configFiles = 'src/app.config.js';

let configFilesWatcher: RollupWatcher;
let watcher: RollupWatcher;
export default function runWather(rollupOptions: RollupOptions) {
if (isBundleRunning) {
return;
}

isBundleRunning = true;

watcher = watch([
{
...rollupOptions,
watch: {
chokidar: {
usePolling: true,
},
include: rollupWatchFiles,
},
},
]);

const watchEventHandle = (event: any) => {
switch (event.code) {
case 'START':
output('🚚 编译...', 'blue');
break;
case 'END':
isBundleRunning = false;
output('💡 完成', 'green');
break;
case 'ERROR':
case 'FATAL':
isBundleRunning = false;
const { error } = event;
const name = error.code === 'PLUGIN_ERROR' ? error.plugin : error.code;
output(`\n🚨 [${name}]: ${error.message}`, 'red');
throw error;
default:
break;
}
};

watcher.on('event', watchEventHandle);

if (isFirstRunWatcher) {
isFirstRunWatcher = false;
console.log('\x1b[34m%s\x1b[0m', '🚀 启动 watch');
}

const close = (err?: Error) => {
if (watcher) watcher.close();
if (configFilesWatcher) configFilesWatcher.close();

process.removeListener('uncaughtException', close);

if (err) {
process.exit(1);
console.error(err);
}
};

process.on('uncaughtException', close);

// 监听config的文件
configFilesWatcher = fs.watch(configFiles, (event: string) => {
if (isBundleRunning) return;

if (event === 'change') {
close();
runWather(rollupOptions);
}
});
}
12 changes: 10 additions & 2 deletions packages/remax-cli/src/getEntries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,15 @@ export default function getEntries(

entries.pages = pages.reduce(
(ret: Array<{ path: string; file: string }>, page: string) => {
const file = searchFile(path.join(options.cwd, 'src', page));
if (!file) {
throw new Error(`Could not resolve page module (${page}).`);
}
return [
...ret,
{
path: page,
file: searchFile(path.join(options.cwd, 'src', page)),
file,
},
].filter(page => page && page.file);
},
Expand All @@ -88,11 +92,15 @@ export default function getEntries(
subpackages.forEach((pack: { pages: string[]; root: string }) => {
entries.pages = entries.pages.concat(
pack.pages.reduce((ret: Array<{ path: string; file: string }>, page) => {
const file = searchFile(path.join(options.cwd, 'src', pack.root, page));
if (!file) {
throw new Error(`Could not resolve page module (${page}).`);
}
return [
...ret,
{
path: page,
file: searchFile(path.join(options.cwd, 'src', pack.root, page)),
file,
},
].filter(page => page && page.file);
}, [])
Expand Down
1 change: 1 addition & 0 deletions packages/remax/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
},
"homepage": "https://github.com/remaxjs/remax#readme",
"dependencies": {
"chokidar": "^3.0.2",
"react-reconciler": "0.20.4",
"scheduler": "0.13.6",
"shallowequal": "^1.1.0"
Expand Down