mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-01 01:19:03 +08:00
52 lines
1.4 KiB
JavaScript
52 lines
1.4 KiB
JavaScript
// ***********************************************************
|
|
// This example plugins/index.js can be used to load plugins
|
|
//
|
|
// You can change the location of this file or turn off loading
|
|
// the plugins file with the 'pluginsFile' configuration option.
|
|
//
|
|
// You can read more here:
|
|
// https://on.cypress.io/plugins-guide
|
|
// ***********************************************************
|
|
|
|
// This function is called when a project is opened or re-opened (e.g. due to
|
|
// the project's config changing)
|
|
|
|
const path = require('path')
|
|
const globby = require('globby')
|
|
const webpackPreprocessor = require('@cypress/webpack-preprocessor')
|
|
|
|
module.exports = on => {
|
|
const alias = {}
|
|
|
|
globby.sync('../packages/*', { onlyDirectories: true })
|
|
.map(name => name.replace('../packages/', ''))
|
|
.forEach(name => {
|
|
alias[`@tiptap/${name}$`] = path.resolve(`../packages/${name}/src/index.ts`)
|
|
})
|
|
|
|
const options = {
|
|
webpackOptions: {
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
use: 'ts-loader',
|
|
exclude: /node_modules/,
|
|
},
|
|
{
|
|
test: /\.jsx?$/,
|
|
use: 'babel-loader',
|
|
exclude: /node_modules/,
|
|
},
|
|
],
|
|
},
|
|
resolve: {
|
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
|
alias,
|
|
},
|
|
},
|
|
}
|
|
|
|
on('file:preprocessor', webpackPreprocessor(options))
|
|
}
|