You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I build a brand new blog with jekyll , and then a added jekyll-admin , and
my app crashed with sass warnings and errors blow:
sass warnings
myblog bundle exec jekyll serve
logger was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0.
You can add logger to your Gemfile or gemspec to silence this warning.
csv was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.4.0.
You can add csv to your Gemfile or gemspec to silence this warning.
/Users/dengxiang/.rubies/ruby-3.3.5/lib/ruby/3.3.0/json/common.rb:3: warning: ostruct was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0.
You can add ostruct to your Gemfile or gemspec to silence this warning.
Configuration file: /Users/dengxiang/Jekyll/myblog/_config.yml
Source: /Users/dengxiang/Jekyll/myblog
Destination: /Users/dengxiang/Jekyll/myblog/_site
Incremental build: disabled. Enable with --incremental
Generating...
Jekyll Feed: Generating feed for posts
Deprecation Warning: lighten() is deprecated. Suggestions:
color.scale($color, $lightness: 81.6%)
color.adjust($color, $lightness: 40%)
More info: https://sass-lang.com/d/color-functions
╷
18 │ $grey-color-light: lighten($grey-color, 40%) !default;
│ ^^^^^^^^^^^^^^^^^^^^^^^^^
╵
minima.scss 18:20 @import
/Users/dengxiang/Jekyll/myblog/assets/main.scss 1:9 root stylesheet
Deprecation Warning: darken() is deprecated. Suggestions:
color.scale($color, $lightness: -49.0384615385%)
color.adjust($color, $lightness: -25%)
More info: https://sass-lang.com/d/color-functions
╷
19 │ $grey-color-dark: darken($grey-color, 25%) !default;
│ ^^^^^^^^^^^^^^^^^^^^^^^^
╵
minima.scss 19:20 @import
/Users/dengxiang/Jekyll/myblog/assets/main.scss 1:9 root stylesheet
Deprecation Warning: darken() is deprecated. Suggestions:
error
/Users/James/.gem/ruby/3.3.5/gems/jekyll-admin-0.11.1/lib/jekyll/commands/serve.rb:23:in `jekyll_admin_monkey_patch': uninitialized constant Rack::Handler (NameError)
@server.mount "/admin", Rack::Handler::WEBrick, JekyllAdmin::StaticServer
^^^^^^^^^
from /Users/dengxiang/.gem/ruby/3.3.5/gems/jekyll-admin-0.11.1/lib/jekyll/commands/serve.rb:15:in `start_up_webrick'
from /Users/dengxiang/.gem/ruby/3.3.5/gems/jekyll-4.3.4/lib/jekyll/commands/serve.rb:102:in `process'
from /Users/dengxiang/.gem/ruby/3.3.5/gems/jekyll-4.3.4/lib/jekyll/command.rb:91:in `block in process_with_graceful_fail'
from /Users/dengxiang/.gem/ruby/3.3.5/gems/jekyll-4.3.4/lib/jekyll/command.rb:91:in `each'
Version of JekyllAdmin I'm using <HINT: use bundle show to check>: 0.11.1
Version of Jekyll I'm using <HINT: use bundle show to check>: 4.3.4
Version of NodeJS I'm using <HINT: use node -v to check>: v16.19.1
Operating System <e.g. OS X, Windows>: mac os
Browser <e.g, Safari, Chrome>: chrome
Steps to reproduce:
follow jekyll guide build my app , and then add admin plugin then it happens
I expected the following:
I expect I could open admin GUI with :4000/admin
But got the following, instead:
I tried add rackup into gem ,still the same.
this is the my gemfile
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.12"
gem "jekyll-admin" (the is the line I added into the file)
gem "rackup" (the is the line I added into the file)
end
this is my config.yml
theme: minima
plugins:
- jekyll-feed
- jekyll-admin (the is the only line I added into the file)
then I bundle install and jekyll S, and fail
The text was updated successfully, but these errors were encountered:
Description:
I build a brand new blog with jekyll , and then a added jekyll-admin , and
my app crashed with sass warnings and errors blow:
sass warnings
error
Tell us a bit about yourself:
Version of JekyllAdmin I'm using <HINT: use
bundle show
to check>: 0.11.1Version of Jekyll I'm using <HINT: use
bundle show
to check>: 4.3.4Version of NodeJS I'm using <HINT: use
node -v
to check>: v16.19.1Operating System <e.g. OS X, Windows>: mac os
Browser <e.g, Safari, Chrome>: chrome
Steps to reproduce:
follow jekyll guide build my app , and then add admin plugin then it happens
I expected the following:
I expect I could open admin GUI with :4000/admin
But got the following, instead:
I tried add rackup into gem ,still the same.
this is the my gemfile
this is my config.yml
then I bundle install and jekyll S, and fail
The text was updated successfully, but these errors were encountered: