Git Product home page Git Product logo

less-plugin-functions's People

Contributors

seven-phases-max avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

less-plugin-functions's Issues

How to use it with webpack?

I want to use this plugin in vue.Then I add this plugin like this.

// https://vue-loader.vuejs.org/en/configurations/extract-css.html
  return {
    css: generateLoaders(),
    postcss: generateLoaders(),
    less: generateLoaders('less', {
      plugins: [new require('less-plugin-functions')]
    }),
    sass: generateLoaders('sass', {indentedSyntax: true}),
    scss: generateLoaders('sass'),
    stylus: generateLoaders('stylus'),
    styl: generateLoaders('stylus')
  }

But it reportes this error.
image
Could you please tell me how to use this plugin with webpack?
Thank you.

Using return values in @media condition

Maybe I misuse the plugin somehow, but I get the following problem.

My code:

// 1. variable used in function
@foo: 11px;

// 2. function
.function-bar() {
    return: 42 * @foo;
}

// 3. variable that uses function (just for more readability)
@qux: (1px + bar());

// 4. media (@qux value can be copied here directly to media condition as well)
@media (min-width: (@qux)) {

    .baz {
        less: rulez;
    }
}

Expected CSS result:

@media (min-width: 912px) {
  .qux {
    less: rulez;
  }
}

Actual result:

OperationError: Operation on an invalid type in /path/to/myfile.less on line 13, column 28:
12 // 4. media (@qux value can be copied here directly to media condition as well)
13 @media (min-width: (@qux)) {
14

Great work

Thanks this awesome project makes possible to use css variables in less project. The problem was less would not pass compiling less functions, such as fade, tint etc., if are css variables string passed into it. I used this plugin to override those native less functions and passes through whatever params. I used it in my project which based on ant.design, and used css variables to override less variables to achieve multiple themes and dark mode.

I just would like to appreciate the author made this awesome work. My solution may not be elegant but it works :P

Uppercase characters not supported in function names?

Hello Max,

Thanks for the 2 less plugins you created (lists & this functions one) - I personally think both are much needed addition to less. πŸ‘
I played with this less-plugin-functions yesterday and couldn't get it to work when I used uppercase characters in my funtion names.

Example:

.function-getStyleNamespace { return: "namespace-"; }

@style-ns: getStyleNamespace(); 
@{style-ns}box { display: block; color: black; }

Output:


.function-getStyleNamespace {
  return: "namespace-";
}
getStyleNamespace()box {
  display: block;
  color: black;
}

If I lowercase the function name then everything works fine.

Regards,
R.

grunt task config

Hi,

I have a problem with using less-plugin-functions. Could you please help me?

I've installed less-plugin-functions, but not globally: npm install --save-dev less-plugin-functions

Here is my grunt task:

    less: {
      production: {
        options: {
          paths: ["assets/css"],
          cleancss: true,
          plugins: [
            new (require('less-plugin-functions'))
          ],
          cleancssOptions: {
            keepSpecialComments: 0
          }
        },
        files: {
          "static/css/tip.css": "static/less/styles.less"
        }
      }
    },

But it does nothing. What I'm doing wrong?

Thanks.

How to use it in Sublime?

I want to use this plugin along with Less2Css in Sublime text2. Would you please tell me the way? thanks.

Error on compile: "plugin.install is not a function"

Got this error on compile (i use "grunt-contrib-less": "~1.2.0", which is LESS v2.6.1):

Running "less:core" (less) task
>> TypeError: plugin.install is not a function
>>     at PluginManager.addPlugin (F:\LavkaLavka\Shop\node_modules\less\lib\less\plugin-manager.js:29:12)
>>     at PluginManager.addPlugins (F:\LavkaLavka\Shop\node_modules\less\lib\less\plugin-manager.js:19:18)
>>     at Object.parse (F:\LavkaLavka\Shop\node_modules\less\lib\less\parse.js:34:27)
>>     at Object.render (F:\LavkaLavka\Shop\node_modules\less\lib\less\render.js:25:18)
>>     at F:\LavkaLavka\Shop\node_modules\less\lib\less\render.js:16:24
>>     at Object.render (F:\LavkaLavka\Shop\node_modules\less\lib\less\render.js:15:20)
>>     at compileLess (F:\LavkaLavka\Shop\node_modules\grunt-contrib-less\tasks\less.js:164:17)
>>     at F:\LavkaLavka\Shop\node_modules\grunt-contrib-less\tasks\less.js:63:9
>>     at F:\LavkaLavka\Shop\node_modules\grunt-contrib-less\node_modules\async\lib\async.js:662:13
>>     at iterate (F:\LavkaLavka\Shop\node_modules\grunt-contrib-less\node_modules\async\lib\async.js:146:13)
Warning: Error compiling .less/F133.less Use --force to continue.

Inside gruntfile

    // LESS compilation task.
    less: {
        options: {
            strictImports: true,
            plugins: [
                require('less-plugin-functions')
            ]
        },
        core: {
            src: '.less/<%= pkg.name %>.less',
            dest: 'css/<%= pkg.name %>.css'
        },
        project: {
            src: '.less/style.less',
            dest: 'css/style.css'
        }
    },

Maybe i'm doing something wrong?
I've intialized and used few less plugins this way successfully, so thought i need to write it here)

I reaaaaaallly need this functionality in less now!))

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.