Blockbase: Update the package.json (#5253)
* Blockbase: Update the package.json * update * Add author
This commit is contained in:
parent
e3762b3329
commit
955628f282
4 changed files with 566 additions and 480 deletions
|
@ -294,6 +294,11 @@ button:focus {
|
|||
outline-offset: 2px;
|
||||
}
|
||||
|
||||
input[type="checkbox"]:-ms-input-placeholder, input[type="submit"]:-ms-input-placeholder, button:-ms-input-placeholder {
|
||||
color: var(--wp--custom--form--color--text);
|
||||
opacity: 0.66;
|
||||
}
|
||||
|
||||
input[type="checkbox"]::placeholder,
|
||||
input[type="submit"]::placeholder,
|
||||
button::placeholder {
|
||||
|
@ -719,7 +724,8 @@ p.has-drop-cap:not(:focus):first-letter {
|
|||
.wp-block-post-comments form .comment-form-cookies-consent input[type="checkbox"] {
|
||||
border: 0;
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
clip-path: inset(50%);
|
||||
-webkit-clip-path: inset(50%);
|
||||
clip-path: inset(50%);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
|
@ -966,6 +972,11 @@ div.wp-block-query-pagination .wp-block-query-pagination-numbers .current {
|
|||
line-height: 0;
|
||||
}
|
||||
|
||||
.wp-block-search .wp-block-search__input:-ms-input-placeholder {
|
||||
color: var(--wp--custom--form--color--text);
|
||||
opacity: 0.66;
|
||||
}
|
||||
|
||||
.wp-block-search .wp-block-search__input::placeholder {
|
||||
color: var(--wp--custom--form--color--text);
|
||||
opacity: 0.66;
|
||||
|
@ -1097,5 +1108,4 @@ p.wp-block-site-tagline {
|
|||
-webkit-mask-image: url(svg/post-tag.svg);
|
||||
mask-image: url(svg/post-tag.svg);
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=ponyfill.css.map */
|
1002
blockbase/package-lock.json
generated
1002
blockbase/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -3,37 +3,26 @@
|
|||
"version": "2.0.9",
|
||||
"description": "Blank Parent Theme",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Automattic/themes/issues"
|
||||
"url": "https://github.com/Automattic/themes/issues/new?label=[Theme]%20Blockbase"
|
||||
},
|
||||
"homepage": "https://github.com/Automattic/themes#readme",
|
||||
"homepage": "https://github.com/Automattic/themes/blob/trunk/blockbase/README.md",
|
||||
"devDependencies": {
|
||||
"@wordpress/base-styles": "^3.3.0",
|
||||
"@wordpress/browserslist-config": "^2.2.2",
|
||||
"chokidar-cli": "^2.1.0",
|
||||
"deepmerge": "^4.2.2",
|
||||
"node-sass": "^4.13.1",
|
||||
"node-sass-package-importer": "^5.3.2",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"rtlcss": "^2.4.0"
|
||||
},
|
||||
"rtlcssConfig": {
|
||||
"options": {
|
||||
"autoRename": false,
|
||||
"autoRenameStrict": false,
|
||||
"blacklist": {},
|
||||
"clean": true,
|
||||
"greedy": false,
|
||||
"processUrls": false,
|
||||
"stringMap": []
|
||||
},
|
||||
"plugins": [],
|
||||
"map": false
|
||||
"postcss": "^8.2.12",
|
||||
"postcss-cli": "^8.3.1"
|
||||
},
|
||||
"browserslist": [
|
||||
"extends @wordpress/browserslist-config"
|
||||
],
|
||||
"scripts": {
|
||||
"start": "chokidar \"sass/**/*.scss\" -c \"npm run build\" --initial",
|
||||
"build": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js sass/ponyfill.scss assets/ponyfill.css --output-style expanded --indent-type tab --indent-width 1 --source-map true"
|
||||
}
|
||||
"build": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js sass/ponyfill.scss assets/ponyfill.css --output-style expanded --indent-type tab --indent-width 1 --source-map true && postcss assets/ponyfill.css --use autoprefixer --output assets/ponyfill.css --map",
|
||||
"build:scss": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js sass/ponyfill.scss --output-style expanded --indent-type tab --indent-width 1 | postcss --use autoprefixer --output assets/ponyfill.css --map"
|
||||
},
|
||||
"author": "Automattic",
|
||||
"license": "GPLv2"
|
||||
}
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
"@wordpress/scripts": "^14.0.1",
|
||||
"@wordpress/stylelint-config": "^19.0.1",
|
||||
"chokidar-cli": "^2.1.0",
|
||||
"deepmerge": "^4.2.2",
|
||||
"fs-extra": "^10.0.0",
|
||||
"husky": "^4.3.0",
|
||||
"inquirer": "^8.1.5",
|
||||
|
|
Loading…
Add table
Reference in a new issue