mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			91 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
| const path = require("path");
 | |
| const webpack = require("../../../../");
 | |
| 
 | |
| /** @type {(env: Env, options: TestOptions) => import("../../../../").Configuration[]} */
 | |
| module.exports = (env, { testPath }) => [
 | |
| 	{
 | |
| 		context: path.join(__dirname, "../css-modules"),
 | |
| 		entry: "../css-modules-in-node/index.js",
 | |
| 		target: "node",
 | |
| 		mode: "development",
 | |
| 		experiments: {
 | |
| 			css: true
 | |
| 		},
 | |
| 		module: {
 | |
| 			rules: [
 | |
| 				{
 | |
| 					test: /\.my-css$/i,
 | |
| 					type: "css/auto"
 | |
| 				},
 | |
| 				{
 | |
| 					test: /\.invalid$/i,
 | |
| 					type: "css/auto"
 | |
| 				}
 | |
| 			]
 | |
| 		}
 | |
| 	},
 | |
| 	{
 | |
| 		context: path.join(__dirname, "../css-modules"),
 | |
| 		entry: "../css-modules-in-node/index.js",
 | |
| 		target: "node",
 | |
| 		mode: "production",
 | |
| 		output: {
 | |
| 			uniqueName: "my-app"
 | |
| 		},
 | |
| 		experiments: {
 | |
| 			css: true
 | |
| 		},
 | |
| 		plugins: [
 | |
| 			new webpack.ids.DeterministicModuleIdsPlugin({
 | |
| 				maxLength: 3,
 | |
| 				failOnConflict: true,
 | |
| 				fixedLength: true,
 | |
| 				test: m => m.type.startsWith("css")
 | |
| 			})
 | |
| 		],
 | |
| 		module: {
 | |
| 			rules: [
 | |
| 				{
 | |
| 					test: /\.my-css$/i,
 | |
| 					type: "css/auto"
 | |
| 				},
 | |
| 				{
 | |
| 					test: /\.invalid$/i,
 | |
| 					type: "css/auto"
 | |
| 				}
 | |
| 			]
 | |
| 		}
 | |
| 	},
 | |
| 	{
 | |
| 		context: path.join(__dirname, "../css-modules"),
 | |
| 		entry: "../css-modules-in-node/index.js",
 | |
| 		target: "node",
 | |
| 		mode: "production",
 | |
| 		output: {
 | |
| 			uniqueName: "my-app"
 | |
| 		},
 | |
| 		experiments: {
 | |
| 			css: true
 | |
| 		},
 | |
| 		plugins: [
 | |
| 			new webpack.experiments.ids.SyncModuleIdsPlugin({
 | |
| 				test: m => m.type.startsWith("css"),
 | |
| 				path: path.resolve(testPath, "../css-modules/module-ids.json"),
 | |
| 				mode: "read"
 | |
| 			})
 | |
| 		],
 | |
| 		module: {
 | |
| 			rules: [
 | |
| 				{
 | |
| 					test: /\.my-css$/i,
 | |
| 					type: "css/auto"
 | |
| 				},
 | |
| 				{
 | |
| 					test: /\.invalid$/i,
 | |
| 					type: "css/auto"
 | |
| 				}
 | |
| 			]
 | |
| 		}
 | |
| 	}
 | |
| ];
 |