-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
7,408 additions
and
7,388 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,20 @@ | ||
module.exports = { | ||
extends: [ | ||
'@wordpress/stylelint-config/scss', | ||
], | ||
ignoreFiles: [ | ||
extends: [ '@wordpress/stylelint-config/scss' ], | ||
ignoreFiles: [ | ||
'build/**/*.css', | ||
'node_modules/**/*.css', | ||
'vendor/**/*.css', | ||
'**/*.js', | ||
'**/*.svg' | ||
], | ||
'**/*.svg', | ||
], | ||
rules: { | ||
'no-descending-specificity': null, | ||
'font-weight-notation': null, | ||
'font-family-no-missing-generic-family-keyword': null, | ||
'selector-class-pattern': null, | ||
'at-rule-empty-line-before': null, | ||
'declaration-property-unit-allowed-list': { | ||
'line-height': [] | ||
'line-height': [], | ||
}, | ||
} | ||
} | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,46 @@ | ||
{ | ||
"name": "custom-html-block-extension", | ||
"version": "3.4.0", | ||
"description": "WordPress plugin to extends \"Custom HTML block\" to evolve into an advanced code editor", | ||
"author": "Aki Hamano", | ||
"license": "GPL-2.0+", | ||
"license": "GPL-2.0-or-later", | ||
"keywords": [ | ||
"gutenberg", | ||
"block", | ||
"html", | ||
"highlighting", | ||
"emmet" | ||
], | ||
"homepage": "https://github.com/t-hamano/custom-html-block-extension", | ||
"repository": "git+https://github.com/t-hamano/custom-html-block-extension.git", | ||
"bugs": { | ||
"url": "https://github.com/t-hamano/custom-html-block-extension/issues" | ||
}, | ||
"engines": { | ||
"node": ">=16.0.0", | ||
"npm": ">=8.0.0" | ||
}, | ||
"volta": { | ||
"node": "16.18.0", | ||
"npm": "8.19.2" | ||
}, | ||
"dependencies": { | ||
"@wordpress/icons": "^9.36.0", | ||
"emmet-monaco-es": "^5.3.0", | ||
"monaco-editor": "^0.44.0", | ||
"react-notifications-component": "^4.0.1", | ||
"webfontloader": "^1.6.28" | ||
}, | ||
"devDependencies": { | ||
"@deboxsoft/cpx": "^1.5.0", | ||
"@wordpress/base-styles": "^4.36.0", | ||
"@wordpress/e2e-test-utils": "^10.16.0", | ||
"@wordpress/env": "^8.11.0", | ||
"@wordpress/scripts": "^26.16.0", | ||
"opener": "^1.5.2", | ||
"prettier": "npm:[email protected]", | ||
"rimraf": "^5.0.5" | ||
}, | ||
"scripts": { | ||
"wp-env": "wp-env", | ||
"open": "wp-env start && opener http://localhost:8888", | ||
|
@@ -10,37 +49,16 @@ | |
"build": "npm run clean && wp-scripts build src/admin src/block-editor src/classic-editor src/theme-plugin-editor --output-path build && npm run copy-lib", | ||
"copy-lib": "cpx -C \"node_modules/monaco-editor/min/**\" \"build/vendor/monaco-editor/min\" && node bin/delete-sourcemaps.js", | ||
"clean": "rimraf build", | ||
"lint": "npm run lint:php && npm run lint:style && npm run lint:js", | ||
"lint:php": "composer lint", | ||
"check-licenses": "wp-scripts check-licenses", | ||
"lint": "npm run lint:css && npm run lint:js && npm run lint:php && npm run lint:md-docs && npm run lint:pkg-json", | ||
"lint:css": "wp-scripts lint-style", | ||
"lint:js": "wp-scripts lint-js", | ||
"lint:style": "wp-scripts lint-style", | ||
"lint:php": "composer lint", | ||
"lint:md-docs": "wp-scripts lint-md-docs", | ||
"lint:pkg-json": "wp-scripts lint-pkg-json", | ||
"format": "wp-scripts format", | ||
"test": "npm run lint:js && npm run test:e2e", | ||
"test:e2e": "wp-scripts test-playwright", | ||
"test:e2e:debug": "wp-scripts test-playwright --debug" | ||
}, | ||
"devDependencies": { | ||
"@deboxsoft/cpx": "^1.5.0", | ||
"@wordpress/base-styles": "^4.35.0", | ||
"@wordpress/e2e-test-utils": "^10.15.0", | ||
"@wordpress/env": "^8.10.0", | ||
"@wordpress/scripts": "^26.15.0", | ||
"opener": "^1.5.2", | ||
"prettier": "npm:[email protected]", | ||
"rimraf": "^5.0.5" | ||
}, | ||
"dependencies": { | ||
"@wordpress/icons": "^9.35.0", | ||
"emmet-monaco-es": "^5.3.0", | ||
"monaco-editor": "^0.44.0", | ||
"react-notifications-component": "^4.0.1", | ||
"webfontloader": "^1.6.28" | ||
}, | ||
"engines": { | ||
"node": ">=16.0.0", | ||
"npm": ">=8.0.0" | ||
}, | ||
"volta": { | ||
"node": "16.18.0", | ||
"npm": "8.19.2" | ||
} | ||
} |
Oops, something went wrong.