-
Notifications
You must be signed in to change notification settings - Fork 0
build: extract versions to versions.env and add PostCSS optimization #29
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| { | ||
| "private": true, | ||
| "devDependencies": { | ||
| "autoprefixer": "^10.4.20", | ||
| "cssnano": "^7.0.6", | ||
| "postcss": "^8.5.3", | ||
| "postcss-cli": "^11.0.1" | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| module.exports = { | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's no |
||
| plugins: [ | ||
| require("autoprefixer"), | ||
| require("cssnano")({ | ||
| preset: [ | ||
| "default", | ||
| { | ||
| discardComments: { removeAll: true }, | ||
| }, | ||
| ], | ||
| }), | ||
| ], | ||
| }; | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| # Collection versions - managed by Renovate | ||
| # renovate: datasource=galaxy-collection depName=arillso.system | ||
| ARILLSO_SYSTEM_VERSION="1.0.5" | ||
| # renovate: datasource=galaxy-collection depName=arillso.agent | ||
| ARILLSO_AGENT_VERSION="1.0.3" | ||
| # renovate: datasource=galaxy-collection depName=arillso.container | ||
| ARILLSO_CONTAINER_VERSION="1.0.2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
custom.cssis not guaranteed to exist — it depends on the Sphinx theme generating it. If the file is absent,postcsswill error out and fail the build. Add a guard: