Skip to content

Commit

Permalink
fix: update ci images and NPM packages (#72)
Browse files Browse the repository at this point in the history
* fix: update ci images

* fix: update calypso-build and other wp dependencies

* chore: update all dependencies

* fix: add webpack deps to re-enable build and de commands

* fix: lint errors
  • Loading branch information
dkoo authored Nov 3, 2021
1 parent ce45916 commit 21ccfbf
Show file tree
Hide file tree
Showing 7 changed files with 52,544 additions and 24,398 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ commands:
jobs:
build:
docker:
- image: circleci/php:7.2-node-browsers
- image: cimg/php:7.4-browsers
steps:
- checkout_with_workspace
- run:
Expand All @@ -24,7 +24,7 @@ jobs:
# Linting
lint:
docker:
- image: circleci/php:7.2-node-browsers
- image: cimg/php:7.4-browsers
steps:
- checkout_with_workspace
- run:
Expand All @@ -42,12 +42,12 @@ jobs:
# Release job
release:
docker:
- image: circleci/php:7.2-node-browsers
- image: cimg/php:7.4-browsers
steps:
- checkout_with_workspace
- run:
name: Install rsync
command: sudo apt install rsync
command: sudo apt-get update && sudo apt-get install rsync
- run:
name: Install PHP dependencies
command: composer install --no-dev --no-scripts
Expand All @@ -58,7 +58,7 @@ jobs:
# Reset alpha branch after a release
post_release:
docker:
- image: circleci/node:12
- image: cimg/php:7.4-browsers
steps:
- checkout_with_workspace
- run:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
/node_modules/
/dist/
.DS_Store
.cache
release
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16.11.1
41 changes: 25 additions & 16 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -1,18 +1,27 @@
{
"extends": ["stylelint-config-wordpress/scss", "stylelint-prettier/recommended"],
"rules": {
"rule-empty-line-before": null,
"at-rule-empty-line-before": null,
"comment-empty-line-before": null,
"string-quotes": "single",
"no-descending-specificity": null,
"function-url-quotes": null,
"declaration-property-unit-whitelist": null,
"font-weight-notation": null,
"color-named": null,
"selector-class-pattern": null,
"function-parentheses-space-inside": "always-single-line",
"media-feature-parentheses-space-inside": "always",
"selector-pseudo-class-parentheses-space-inside": "always",
}
"extends": [
"@wordpress/stylelint-config/scss",
"stylelint-prettier/recommended"
],
"rules": {
"rule-empty-line-before": null,
"at-rule-empty-line-before": null,
"comment-empty-line-before": null,
"string-quotes": "single",
"no-descending-specificity": null,
"function-url-quotes": null,
"declaration-property-unit-whitelist": null,
"font-weight-notation": null,
"color-named": null,
"selector-class-pattern": null,
"function-parentheses-space-inside": "always-single-line",
"media-feature-parentheses-space-inside": "always",
"selector-pseudo-class-parentheses-space-inside": "always",
"declaration-property-unit-allowed-list": {
"line-height": [
"px",
"em"
]
}
}
}
Loading

0 comments on commit 21ccfbf

Please sign in to comment.