mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-27 02:14:36 -05:00
87ce14a70f
* fix: support ressources with relative paths * fix: support ressources with relative paths - review changes * try fixing contributor workflow * try to fix regex * try again * try workflow again * Revert changes to workflow * exclude tests from contributor workflow * Update cli/CHANGELOG.md Co-authored-by: Mike Plummer <mike-plummer@users.noreply.github.com> * Update packages/server/lib/controllers/iframes.ts Co-authored-by: Mike Plummer <mike-plummer@users.noreply.github.com> * fix terst * use URLSearchParams --------- Co-authored-by: Florian Riedel <low@fochlac.com> Co-authored-by: Adam Stone-Lord <adams@cypress.io> Co-authored-by: Jordan <jordan@jpdesigning.com> Co-authored-by: Mike Plummer <mike-plummer@users.noreply.github.com>
26 lines
454 B
JavaScript
26 lines
454 B
JavaScript
const CopyPlugin = require('copy-webpack-plugin')
|
|
|
|
module.exports = {
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(js|jsx)$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
options: {
|
|
presets: ['@babel/preset-react'],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
new CopyPlugin({
|
|
patterns: [
|
|
{ from: './src/quak.png', to: 'quak.png' },
|
|
],
|
|
}),
|
|
],
|
|
}
|