Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,10 @@ tmp
/.env
.superpowers/
docs/superpowers/
/docs/

# Local dev only (wp-env mu-plugin mappings, staging access)
/dev/

# Local wp-env overrides — may contain credentials, never commit
.wp-env.override.json
296 changes: 201 additions & 95 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion config/webpack/webpack-js.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ const babelConfig = {

export const jsWebpackConfig: Configuration = {
entry: {
'admin-bar': `${SOURCE_DIR}/admin-bar.ts`,
'edit': { import: `${SOURCE_DIR}/edit.ts`, dependOn: 'editor' },
'editor': `${SOURCE_DIR}/editor.ts`,
'feedback': `${SOURCE_DIR}/feedback.ts`,
Expand All @@ -35,6 +34,7 @@ export const jsWebpackConfig: Configuration = {
'mce': `${SOURCE_DIR}/mce.ts`,
'prism': `${SOURCE_DIR}/prism.ts`,
'settings': { import: `${SOURCE_DIR}/settings.ts`, dependOn: 'editor' },
'admin-bar': `${SOURCE_DIR}/admin-bar.ts`,
'welcome': `${SOURCE_DIR}/welcome.ts`
},
output: {
Expand Down
Loading
Loading