recipes icon indicating copy to clipboard operation
recipes copied to clipboard

Add recipes for symfonycasts/sass-bundle

Open makraz opened this issue 1 year ago • 4 comments

Q A
License MIT
Doc issue/PR symfony/symfony-docs#...

makraz avatar Jan 01 '24 14:01 makraz

Thanks for the PR 😍

How to test these changes in your application

  1. Define the SYMFONY_ENDPOINT environment variable:

    # On Unix-like (BSD, Linux and macOS)
    export SYMFONY_ENDPOINT=https://raw.githubusercontent.com/symfony/recipes/flex/pull-1278/index.json
    # On Windows
    SET SYMFONY_ENDPOINT=https://raw.githubusercontent.com/symfony/recipes/flex/pull-1278/index.json
    
  2. Install the package(s) related to this recipe:

    composer req 'symfony/flex:^1.16'
    composer req 'symfonycasts/sass-bundle:^0.5'
    
  3. Don't forget to unset the SYMFONY_ENDPOINT environment variable when done:

    # On Unix-like (BSD, Linux and macOS)
    unset SYMFONY_ENDPOINT
    # On Windows
    SET SYMFONY_ENDPOINT=
    

Diff between recipe versions

In order to help with the review stage, I'm in charge of computing the diff between the various versions of patched recipes. I'm going keep this comment up to date with any updates of the attached patch.

github-actions[bot] avatar Jan 01 '24 14:01 github-actions[bot]

@weaverryan Can you review this one please?

fabpot avatar Jan 18 '24 06:01 fabpot

It looks like there is a space in the path of symfonycasts/sass-bundle/0.4/assets /styles/app.scss at the end of assets.

Is that intended?

rosier avatar Feb 08 '24 17:02 rosier

It looks like there is a space in the path of symfonycasts/sass-bundle/0.4/assets /styles/app.scss at the end of assets.

Is that intended?

good catch, thank you, I fixed it 👍🏼

makraz avatar Feb 08 '24 18:02 makraz