mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-19 13:47:51 +08:00
d689e2d9c1
* feat(react): add react context implementation * chore(docs): updated react docs & demos for new context * chore(docs): added slot docs * chore(docs): fix typo * chore(react): use correct editor package * fix typo in react installation docs * update react typings to latest version * fix types --------- Co-authored-by: bdbch <dominik@bdbch.com>
59 lines
1.6 KiB
JavaScript
59 lines
1.6 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?$/,
|
|
loader: 'ts-loader',
|
|
exclude: /node_modules/,
|
|
options: {
|
|
// tsconfig:
|
|
configFile: path.resolve(__dirname, '..', 'tsconfig.json'),
|
|
},
|
|
},
|
|
{
|
|
test: /\.jsx?$/,
|
|
use: 'babel-loader',
|
|
exclude: /node_modules/,
|
|
},
|
|
],
|
|
},
|
|
resolve: {
|
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
|
alias,
|
|
extensionAlias: {
|
|
'.js': ['.js', '.ts'],
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
on('file:preprocessor', webpackPreprocessor(options))
|
|
}
|