Skip to content

Commit

Permalink
fix: 正则替换编辑器的引入文件
Browse files Browse the repository at this point in the history
  • Loading branch information
moshangqi committed Dec 13, 2023
1 parent 4b6c24d commit 49bc596
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ module.exports = {
htmlWhitespaceSensitivity: 'ignore',
endOfLine: 'lf',
embeddedLanguageFormatting: 'auto',
bracketSpacing: true
bracketSpacing: true,
printWidth: 120
};
9 changes: 7 additions & 2 deletions scripts/preset-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,13 @@ const lakeIconURL = 'https://mdn.alipayobjects.com/design_kitchencore/afts/file/
const remoteAssetsUrls = {
lakejs: {
src: `https://gw.alipayobjects.com/render/p/yuyan_npm/@alipay_lakex-doc/${LAKE_EDITOR_VERSION}/umd/doc.umd.js`,
after: (content) => {
return content.replace(lakeIconURL, './lake-editor-icon.js');
after: content => {
let result = content;
result = result.replace(/https\:\/\/gw\.alipayobjects\.com[\w\/\.]+CodeMirror\.js/g, './CodeMirror.js');
result = result.replace(/https\:\/\/gw\.alipayobjects\.com[\w\/\.]+katex\.min\.js/g, './katex.min.js');
result = result.replace(lakeIconURL, './lake-editor-icon.js');
console.log(content);
return result;
},
name: 'doc.umd.js',
},
Expand Down

0 comments on commit 49bc596

Please sign in to comment.