mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-06-08 01:53:04 +08:00

Some checks are pending
build / build (20) (push) Waiting to run
build / test (20, map[name:Demos/Commands spec:./demos/src/Commands/**/*.spec.{js,ts}]) (push) Blocked by required conditions
build / test (20, map[name:Demos/Examples spec:./demos/src/Examples/**/*.spec.{js,ts}]) (push) Blocked by required conditions
build / test (20, map[name:Demos/Experiments spec:./demos/src/Experiments/**/*.spec.{js,ts}]) (push) Blocked by required conditions
build / test (20, map[name:Demos/Extensions spec:./demos/src/Extensions/**/*.spec.{js,ts}]) (push) Blocked by required conditions
build / test (20, map[name:Demos/GuideContent spec:./demos/src/GuideContent/**/*.spec.{js,ts}]) (push) Blocked by required conditions
build / test (20, map[name:Demos/GuideGettingStarted spec:./demos/src/GuideGettingStarted/**/*.spec.{js,ts}]) (push) Blocked by required conditions
build / test (20, map[name:Demos/Marks spec:./demos/src/Marks/**/*.spec.{js,ts}]) (push) Blocked by required conditions
build / test (20, map[name:Demos/Nodes spec:./demos/src/Nodes/**/*.spec.{js,ts}]) (push) Blocked by required conditions
build / test (20, map[name:Integration spec:./tests/cypress/integration/**/*.spec.{js,ts}]) (push) Blocked by required conditions
build / release (20) (push) Blocked by required conditions
Publish / Release (20) (push) Waiting to run
77 lines
2.6 KiB
JavaScript
77 lines
2.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 { globSync } = require('tinyglobby')
|
|
const webpackPreprocessor = require('@cypress/webpack-preprocessor')
|
|
|
|
module.exports = on => {
|
|
const alias = {}
|
|
|
|
globSync('../packages/*', { onlyDirectories: true })
|
|
.map(name => name.replace('../packages/', ''))
|
|
.forEach(name => {
|
|
alias[`@tiptap/${name.split('/').slice(0, -1).join('/')}$`] = path.resolve(`../packages/${name}/src/index.ts`)
|
|
})
|
|
|
|
// Specifically resolve the pm package
|
|
globSync('../packages/pm/*', { onlyDirectories: true })
|
|
.map(name => name.replace('../packages/pm', ''))
|
|
.forEach(name => {
|
|
alias[`@tiptap/pm${name.split('/').slice(0, -1).join('/')}$`] = path.resolve(`../packages/pm/${name}/index.ts`)
|
|
})
|
|
// Specifically resolve the static-renderer package
|
|
alias['@tiptap/static-renderer/json/html-string$'] = path.resolve(
|
|
'../packages/static-renderer/src/json/html-string/index.ts',
|
|
)
|
|
alias['@tiptap/static-renderer/pm/html-string$'] = path.resolve(
|
|
'../packages/static-renderer/src/pm/html-string/index.ts',
|
|
)
|
|
alias['@tiptap/static-renderer/pm/react$'] = path.resolve('../packages/static-renderer/src/pm/react/index.ts')
|
|
alias['@tiptap/static-renderer/pm/markdown$'] = path.resolve('../packages/static-renderer/src/pm/markdown/index.ts')
|
|
alias['@tiptap/static-renderer$'] = path.resolve('../packages/static-renderer/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'],
|
|
'.jsx': ['.jsx', '.tsx'],
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
on('file:preprocessor', webpackPreprocessor(options))
|
|
}
|