Skip to content

Commit

Permalink
remove useless dependency (webpack-encore) for admin-block-editor and…
Browse files Browse the repository at this point in the history
… enhance ui for quote
  • Loading branch information
RobinDev committed Feb 11, 2024
1 parent 9b64733 commit 5ff1f8f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions packages/admin-block-editor/src/assets/admin-block-editor.js
@@ -1,10 +1,10 @@
require("./admin.scss");
import css from './admin.scss'

import { editorJs } from "./editor.js";
import { editorJsHelper } from "./editorJsHelper.js";
import { editorJs } from './editor.js'
import { editorJsHelper } from './editorJsHelper.js'

window.editorJsHelper = new editorJsHelper();
window.editorJsHelper = new editorJsHelper()

window.addEventListener("load", function () {
window.editors = new editorJs().getEditors();
});
window.addEventListener('load', function () {
window.editors = new editorJs().getEditors()
})
2 changes: 1 addition & 1 deletion packages/admin-block-editor/webpack.config.js
Expand Up @@ -50,7 +50,7 @@ module.exports = {
],
},
{
test: /\.p?css$/,
test: /\.s?css$/,
use: [
'style-loader',
'css-loader',
Expand Down
Binary file modified packages/skeleton/var/app.db
Binary file not shown.

0 comments on commit 5ff1f8f

Please sign in to comment.