mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-30 23:47:35 +03:00 
			
		
		
		
	* Update Chrome manifest.json * Remove use of window in background * Test devpanel * Inject pageScript using new API * Keep connection from devpanel to background alive * Keep connection from content script to background alive * Replace page action with action * Cleanup syncOptions * Update options to not rely on background page access * Start work on updating popup * Updates * Remove window * Get opening in a separate window working * Remove pageScriptWrap * Add socket to panelStore * Fix tests * Try to use MV3 for Firefox * Fix path * Fix Chrome E2E tests * Revert unintentional change * Skip Electron tests for now Looks like they're still working through stuff in https://github.com/electron/electron/issues/41613 * Better image centering The Firefox popup did not like the old CSS. This is still not perfect, but it's better than it was. * Create shaggy-taxis-cross.md
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import * as fs from 'node:fs';
 | |
| import * as esbuild from 'esbuild';
 | |
| import pug from 'pug';
 | |
| 
 | |
| const args = process.argv.slice(2);
 | |
| const prod = !args.includes('--dev');
 | |
| 
 | |
| await esbuild.build({
 | |
|   bundle: true,
 | |
|   logLevel: 'info',
 | |
|   outdir: 'dist',
 | |
|   minify: prod,
 | |
|   sourcemap: !prod,
 | |
|   define: {
 | |
|     'process.env.NODE_ENV': prod ? '"production"' : '"development"',
 | |
|     'process.env.BABEL_ENV': prod ? '"production"' : '"development"',
 | |
|   },
 | |
|   entryPoints: [
 | |
|     { out: 'background.bundle', in: 'src/background/index.ts' },
 | |
|     { out: 'options.bundle', in: 'src/options/index.tsx' },
 | |
|     { out: 'remote.bundle', in: 'src/remote/index.tsx' },
 | |
|     { out: 'devpanel.bundle', in: 'src/devpanel/index.tsx' },
 | |
|     { out: 'devtools.bundle', in: 'src/devtools/index.ts' },
 | |
|     { out: 'content.bundle', in: 'src/contentScript/index.ts' },
 | |
|     { out: 'page.bundle', in: 'src/pageScript/index.ts' },
 | |
|   ],
 | |
|   loader: {
 | |
|     '.woff2': 'file',
 | |
|   },
 | |
| });
 | |
| 
 | |
| console.log();
 | |
| 
 | |
| console.log('Creating HTML files...');
 | |
| const htmlFiles = ['devpanel', 'devtools', 'options', 'remote'];
 | |
| for (const htmlFile of htmlFiles) {
 | |
|   fs.writeFileSync(
 | |
|     `dist/${htmlFile}.html`,
 | |
|     pug.renderFile(`src/${htmlFile}/${htmlFile}.pug`),
 | |
|   );
 | |
| }
 | |
| 
 | |
| console.log('Copying manifest.json...');
 | |
| fs.copyFileSync('chrome/manifest.json', 'dist/manifest.json');
 | |
| 
 | |
| console.log('Copying assets...');
 | |
| fs.cpSync('src/assets', 'dist', { recursive: true });
 | |
| 
 | |
| console.log('Copying dist for each browser...');
 | |
| fs.cpSync('dist', 'chrome/dist', { recursive: true });
 | |
| fs.copyFileSync('chrome/manifest.json', 'chrome/dist/manifest.json');
 | |
| fs.cpSync('dist', 'edge/dist', { recursive: true });
 | |
| fs.copyFileSync('edge/manifest.json', 'edge/dist/manifest.json');
 | |
| fs.cpSync('dist', 'firefox/dist', { recursive: true });
 | |
| fs.copyFileSync('firefox/manifest.json', 'firefox/dist/manifest.json');
 |