-
Notifications
You must be signed in to change notification settings - Fork 24
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
css version fix #997
css version fix #997
Conversation
WalkthroughWalkthroughThe recent changes involve updates to the version numbers of CSS files ( Changes
Poem
Tip Early access features: enabledWe are currently testing the following features in early access:
Note:
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (6)
micro-ui/web/micro-ui-internals/example/package.json
is excluded by!**/*.json
micro-ui/web/micro-ui-internals/package.json
is excluded by!**/*.json
micro-ui/web/micro-ui-internals/packages/css/package.json
is excluded by!**/*.json
micro-ui/web/micro-ui-internals/packages/modules/campaign-manager/package.json
is excluded by!**/*.json
micro-ui/web/package.json
is excluded by!**/*.json
micro-ui/web/workbench/package.json
is excluded by!**/*.json
Files selected for processing (3)
- micro-ui/web/micro-ui-internals/example/public/index.html (1 hunks)
- micro-ui/web/micro-ui-internals/packages/css/src/pages/employee/index.scss (1 hunks)
- micro-ui/web/public/index.html (1 hunks)
Files skipped from review due to trivial changes (2)
- micro-ui/web/micro-ui-internals/packages/css/src/pages/employee/index.scss
- micro-ui/web/public/index.html
Additional comments not posted (3)
micro-ui/web/micro-ui-internals/example/public/index.html (3)
20-20
: Verify the new CSS file version.Ensure that the new version
1.0.57-campaign
of@egovernments/digit-ui-css
exists and is correct.
17-17
: Verify the new CSS file version.Ensure that the new version
1.8.2-beta.3
of@egovernments/digit-ui-css
exists and is correct.Verification successful
The new CSS file version
1.8.2-beta.3
exists.The updated link to the stylesheet is correct.
micro-ui/web/micro-ui-internals/example/public/index.html
line 17Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the existence of the new CSS file version. # Test: Check if the new version exists. Expect: HTTP status 200. curl -I https://unpkg.com/@egovernments/[email protected]/dist/index.css | grep "HTTP/1.1 200 OK"Length of output: 740
Script:
#!/bin/bash # Description: Re-verify the existence of the new CSS file version with more robust error handling. # Test: Check if the new version exists. Expect: HTTP status 200. response=$(curl -s -o /dev/null -w "%{http_code}" https://unpkg.com/@egovernments/[email protected]/dist/index.css) if [ "$response" -eq 200 ]; then echo "Version 1.8.2-beta.3 exists." else echo "Version 1.8.2-beta.3 does not exist. HTTP status code: $response" fiLength of output: 218
19-19
: Verify the new CSS file version.Ensure that the new version
0.0.2-beta.10
of@egovernments/digit-ui-components-css
exists and is correct.Verification successful
CSS File Version Verified
The new version
0.0.2-beta.10
of@egovernments/digit-ui-components-css
exists and has been successfully downloaded.
- The CSS file is accessible and contains valid content.
Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the existence of the new CSS file version. # Test: Check if the new version exists. Expect: HTTP status 200. curl -I https://unpkg.com/@egovernments/[email protected]/dist/index.css | grep "HTTP/1.1 200 OK"Length of output: 831
Script:
#!/bin/bash # Description: Re-verify the existence of the new CSS file version. # Test: Check if the new version exists. Expect: HTTP status 200. curl -I https://unpkg.com/@egovernments/[email protected]/dist/index.css | grep "HTTP/1.1 200 OK"Length of output: 436
Script:
#!/bin/bash # Description: Verify the existence of the new CSS file version by downloading the file. # Test: Download the CSS file and check if it contains valid CSS content. curl -s https://unpkg.com/@egovernments/[email protected]/dist/index.css -o /tmp/index.css # Check if the downloaded file is not empty and contains CSS content. if [[ -s /tmp/index.css ]]; then echo "CSS file downloaded successfully." else echo "Failed to download CSS file." fiLength of output: 215
No description provided.