GithubHelp home page GithubHelp logo

fsubal / dart-sass-rails Goto Github PK

View Code? Open in Web Editor NEW
8.0 2.0 0.0 364 KB

Make asset-url() helper work outside of sassc-rails, porting to dart-sass

Home Page: https://www.npmjs.com/package/dart-sass-rails

TypeScript 96.38% SCSS 3.62%
dart-sass rails sass webpack

dart-sass-rails's Introduction

dart-sass-rails

Make asset-url() helper work outside of sassc-rails, porting to dart-sass

Why?

Because you want to stop using Ruby on Rails' asset pipeline, without throwing your .sass/.scss files away.

How to use

Pass it to sass-loader in webpack, or dart-sass option.

import sass from 'sass';
import { dartSassRails } from 'dart-sass-rails';

{
    test: /\.(scss|sass|css)$/i,
    use: [
        MiniCssExtractPlugin.loader,
        {
            loader: "css-loader",
            options: {},
        },
        {
            loader: "resolve-url-loader",

            // Required if you use resolve-url-loader 3.0+
            options: {
                root: "",
            }
        },
        {
            loader: 'sass-loader',
            options: {
                sourceMap: true,
                implementation: sass,
                sassOptions: {
                    functions: dartSassRails({
                        assetRootPath: path.join(railsRoot, 'app', 'assets'),
                        imagesPath: '/images',
                        fontsPath: '/fonts',
                    }),
                    includePaths: [path.join(railsRoot, 'app', 'assets', 'stylesheets')],
                },
            },
        }
    ]
}

See also

  • node-sass-asset-functions: dart-sass-rails is inspired by this lib. If you are using node-sass, use that instead.
  • resolve-url-loader: should be used alongside with dart-sass-rails. Currently dart-sass-rails emits full file paths for url(), and resolve-url-loader transforms to proper urls.

dart-sass-rails's People

Contributors

dependabot[bot] avatar fsubal avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.