Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
1054f7f
Replace instances of require() with import
agibson-godaddy Feb 28, 2025
f1be39f
Move config to separate file that we can export
agibson-godaddy Mar 12, 2025
67e1f65
Initialize config from inside sake file
agibson-godaddy Mar 12, 2025
ea38b7a
Refactor replacement pipes
agibson-godaddy Mar 12, 2025
b9ad28d
Export scripts
agibson-godaddy Mar 12, 2025
d05267b
Refactor validation task
agibson-godaddy Mar 12, 2025
95ae9ed
Refactor bump task
agibson-godaddy Mar 12, 2025
d6cb231
Rework wc tasks
agibson-godaddy Mar 13, 2025
a6a6826
Only import the fs function we use
agibson-godaddy Mar 13, 2025
742c38a
Rework config task
agibson-godaddy Mar 13, 2025
b20d287
Rework linting
agibson-godaddy Mar 13, 2025
c87cc19
Rework imagemin
agibson-godaddy Mar 13, 2025
a8d9bd3
Adjust gulpif import
agibson-godaddy Mar 14, 2025
8f118fe
Rework shell tasks
agibson-godaddy Mar 14, 2025
47a4296
Rework watch
agibson-godaddy Mar 14, 2025
6e429df
Rework styles
agibson-godaddy Mar 14, 2025
975f55e
Rework makepot
agibson-godaddy Mar 14, 2025
0a99b85
Rework decaffeinate
agibson-godaddy Mar 14, 2025
08d14e1
Rework clean tasks
agibson-godaddy Mar 14, 2025
2182c87
Rework compile task
agibson-godaddy Mar 14, 2025
f1ff8e8
Rework scripts
agibson-godaddy Mar 14, 2025
0f20169
Rework github tasks
agibson-godaddy Mar 14, 2025
d235325
Rework zip
agibson-godaddy Mar 14, 2025
75f1ebb
Rework prompt
agibson-godaddy Mar 14, 2025
40a5a55
Rework bundle
agibson-godaddy Mar 14, 2025
06141a6
Use task suffix in constants
agibson-godaddy Mar 14, 2025
beafea5
Use task suffix
agibson-godaddy Mar 14, 2025
5c517b0
Use task suffix
agibson-godaddy Mar 14, 2025
e1c28d6
Use task suffix
agibson-godaddy Mar 14, 2025
a68bfe0
Use task suffix
agibson-godaddy Mar 14, 2025
0370715
Start reworking deploy
agibson-godaddy Mar 14, 2025
59a5cca
Rework deploy tasks
agibson-godaddy Mar 17, 2025
d0bae0f
Update prerelease tasks
agibson-godaddy Mar 17, 2025
c0a821b
Update upfw tasks
agibson-godaddy Mar 17, 2025
1291ccd
Update naming
agibson-godaddy Mar 17, 2025
0212867
Update naming
agibson-godaddy Mar 17, 2025
c79a6e0
Fix import
agibson-godaddy Mar 17, 2025
c1ccfcf
Update deprecated sass import
agibson-godaddy Mar 17, 2025
2b08904
Remove console log
agibson-godaddy Mar 19, 2025
df04967
Rework how series is created
agibson-godaddy Mar 19, 2025
d72c2ba
Add force option
agibson-godaddy Mar 25, 2025
54ba0b3
Fix conflicts
agibson-godaddy Aug 22, 2025
bc3f35d
Apply changes from master
agibson-godaddy Aug 22, 2025
4828df1
Apply suggestions from code review
agibson-godaddy Aug 22, 2025
b7ba4da
Execute codename as a function
agibson-godaddy Aug 22, 2025
2bb4f13
Fix typo
agibson-godaddy Aug 22, 2025
d10d31c
FIx merge conflict
agibson-godaddy Jan 20, 2026
17ce641
Update gulp-cli
agibson-godaddy Jan 20, 2026
dd230b4
Replace gulp-sass-lint with gulp-postcss / stylelint
agibson-godaddy Jan 21, 2026
da4234f
Includes postcss-scss
agibson-godaddy Jan 21, 2026
78ad7a3
Relax linting rules
agibson-godaddy Jan 21, 2026
b27fc58
Fix merge conflicts
agibson-godaddy Jan 30, 2026
fb85a0f
Merge branch 'master' into mwc-17960
agibson-godaddy Jan 30, 2026
8184fcb
Remove rule
agibson-godaddy Jan 30, 2026
8f9793a
Move lint config file to config
agibson-godaddy Jan 30, 2026
534ce32
Merge branch 'master' into mwc-17960
agibson-godaddy Feb 2, 2026
c01ed68
Add support for fixing lint errors
agibson-godaddy Feb 2, 2026
66f2094
Only log if we're actually fixing!
agibson-godaddy Feb 3, 2026
d814440
Update stylelint to v17.1.0
agibson-godaddy Feb 3, 2026
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
3 changes: 3 additions & 0 deletions lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ const buildSakeConfig = () => {
// as environment variables, as this makes more sense - ie whether you want to use browsersync or not is specific tp your local
// dev environment and workflow, not to a particular repo.
tasks: {
lint: {
stylelintConfigFile: null // will use the default bundled one
},
makepot: {
reportBugsTo: 'https://woocommerce.com/my-account/marketplace-ticket-form/',
domainPath: 'i18n/languages'
Expand Down
26 changes: 26 additions & 0 deletions lib/lintfiles/.stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"extends": [
"stylelint-config-standard-scss"
],
"rules": {
"max-nesting-depth": 4,
"selector-class-pattern": null,
"alpha-value-notation": null,
"color-function-alias-notation": null,
"color-function-notation": null,
"property-no-vendor-prefix": null,
"scss/dollar-variable-colon-space-after": null,
"scss/double-slash-comment-empty-line-before": null,
"scss/load-no-partial-leading-underscore": null,
"scss/load-partial-extension": null,
"declaration-block-no-duplicate-properties": null,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-empty-line-before": null,
"font-family-name-quotes": null,
"font-family-no-missing-generic-family-keyword": null,
"length-zero-no-unit": null,
"media-feature-range-notation": null,
"rule-empty-line-before": null,
"shorthand-property-no-redundant-values": null
}
}
Loading