Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Hybrid Core v7 #11

Open
wants to merge 37 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
ebc100f
chore: set indent size for composer.json
saas786 Mar 31, 2021
5f24121
chore(gitignore): exclude .idea /exhale
saas786 Mar 31, 2021
046f954
chore: bump php version
saas786 Jun 7, 2023
57b3e38
chore: lint composer.json
saas786 Jun 7, 2023
e19e1eb
chore(composer): use HC 7 & addon packages, bump package
saas786 Jun 7, 2023
1c09640
refactor: compatibility changes for HC v7
saas786 Jun 7, 2023
ea3e34f
chore: update copyright
saas786 Jun 8, 2023
30b46d8
chore: update i18n scripts and run i18n
saas786 Jun 8, 2023
e0dff05
chore: enforce consistent tab indentation for CSS/SCSS in .editorconf…
saas786 Oct 13, 2024
3c4cffb
chore: add stylelint fix script and lint scss files
saas786 Jun 8, 2023
7d4e1d8
chore: enforce consistent tab indentation for .js in .editorconfig & …
saas786 Oct 13, 2024
00bde93
chore: update build tools and dependencies for improved performance a…
saas786 Aug 10, 2024
a771e7f
chore: add eslint fix script and lint js files
saas786 Jun 8, 2023
673544c
chore: bump composer packages and PHP req
saas786 Jun 12, 2023
cc7d3ca
chore: perform linting
saas786 Aug 7, 2023
c1db797
chore: setup psalm
saas786 Aug 7, 2023
8c85ddc
chore: update phpcs.xml add few exclude rule and some useful configs
saas786 Aug 8, 2024
064122b
chore: bump composer packages and add few necessary packages
saas786 Aug 8, 2024
8f4582d
refactor: add view compatibility changes
saas786 Aug 8, 2024
192c461
refactor: update Collection usage to replace add() with put() for key…
saas786 Aug 12, 2024
877d9ed
refactor: Add support for $default value in Layout::get() method
saas786 Aug 12, 2024
3ad8834
refactor: update jsonSerialize() method to specify return type as array
saas786 Aug 12, 2024
9e42f34
refactor: rename Config::get() to Config::getFromFile() for clarity
saas786 Aug 12, 2024
8382b26
refactor: update Closure handling to use __invoke() method directly
saas786 Aug 12, 2024
2698b98
refactor: allow HTML5 for scripts
saas786 Aug 13, 2024
6e463a5
refactor: sort() to sortColors() for clarity in Editor\Color\Colors c…
saas786 Aug 13, 2024
d3624ee
refactor: reorder provider registrations for dependency clarity
saas786 Aug 13, 2024
259ace4
refactor: add math library import for future division syntax updates …
saas786 Aug 13, 2024
005dfe0
refactor: update .alignleft and .alignright margins to use global spa…
saas786 Aug 13, 2024
371ba62
refactor: add styles for WordPress spacer block
saas786 Aug 13, 2024
e4f63a9
refactor: add mixins for gallery & image blocks based on WordPress ba…
saas786 Aug 13, 2024
b859994
refactor: use WordPress base styles instead of custom styles for core…
saas786 Aug 13, 2024
b83442a
refactor: use WordPress base styles instead of custom styles for core…
saas786 Aug 13, 2024
6aa3cb4
chore: downgrade stylelint & replace stylelint-config-wordpress with …
saas786 Aug 13, 2024
0d9fda2
refactor: correct menu template key from theme_location to location
saas786 Oct 13, 2024
f7f768f
chore: version bump to 2.3.0-alpha-20241013
saas786 Oct 13, 2024
02a84dc
chore: add dist files
saas786 Oct 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
9 changes: 1 addition & 8 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
last 1 Android versions
last 1 ChromeAndroid versions
last 2 Chrome versions
last 2 Firefox versions
last 2 Safari versions
last 2 iOS versions
last 2 Edge versions
last 2 Opera versions
extends @wordpress/browserslist-config
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,13 @@ end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = tab

[composer.json]
indent_size = 4

[{*.css,*.scss}]
indent_style = tab

[{*.js,eslint.config.js}]
indent_style = tab

1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

15 changes: 0 additions & 15 deletions .eslintrc

This file was deleted.

4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/node_modules
/vendor
/composer.lock
/phpcs.xml
/.phpcs.xml
*.map
/.idea
/exhale
6 changes: 4 additions & 2 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "stylelint-config-wordpress/scss",
"extends": "@wordpress/stylelint-config/scss",
"rules": {
"string-quotes": null,
"block-no-empty": null,
Expand All @@ -8,6 +8,8 @@
"function-parentheses-space-inside": null,
"color-named": null,
"declaration-colon-space-before": null,
"at-rule-empty-line-before": null
"at-rule-empty-line-before": null,
"indentation": "tab",
"selector-attribute-quotes": null
}
}
Loading