Questions tagged [prepros]

Prepros is a GUI compiler for preprocessing languages such as LESS, Sass, Compass, Stylus, Jade, Slim, Markdown, Haml and CoffeeScript. Prepros can also live refresh your browser whenever you change your code on your editor.

Prepros is a GUI compiler for preprocessing languages such as LESS, Sass, Compass, Stylus, Jade, Slim, Markdown, Haml and CoffeeScript. Prepros has a built-in server so you can also live refresh your browser whenever you change your code on your editor.

Runs on Windows, Mac OS X, and Linux.

See https://prepros.io/

65 questions
2
votes
1 answer

How to only minfy concatenated js in Prepros

Is there a way to generally NOT minify js files but DO minify a single concatenated version? Basically here's the issue: Large project with 100's of files. During development we don't serve up minified js files as they don't add any benefit and just…
blackmamba
  • 757
  • 5
  • 21
2
votes
1 answer

Force LESS to import a file twice

I am building a variable-driven LESS framework in which a child theme can override variables set in the parent theme. This framework includes responsive design, so variables have different values set for every media query. In order for the media…
develdevil
  • 297
  • 2
  • 15
1
vote
0 answers

Is it possible to conditionally exclude lines of code with prepros.io?

I've been tasked with maintaining a large codebase of client side js code that is using the revealing module pattern. A refactor is not feasible at this time, but because of the revealing module pattern vscode intellisense does not work correctly,…
1
vote
0 answers

Live editing SCSS files in Chrome DevTools with Prepros

I just started using Prepros to compile my SCSS files and I can't seem to figure out how to enable live editing of those files in Chrome Developer Tools. I'm not really sure how this is supported nowadays, but I've found some examples showing this…
Baegus
  • 47
  • 1
  • 6
1
vote
1 answer

SASS invalid CSS due to comment

I'm currently going through an issue with the SASS compiler. I've started creating the basic layout for a Wordpress website using CSS but the compiler, Prepros is not letting me compile the files. I fear that it may have something to do with the…
1
vote
2 answers

Prepros does not want to automatically compile imported sass file

3 days ago I sent a letter in support, but the answer was never received. I have such a problem. There are several partial sass files that are imported into the main file. In 3 files, the option "Imported file" is in the options, and the main file…
Faltfromoss
  • 155
  • 1
  • 14
1
vote
3 answers

Conditionals of dynamic content with PUG and FLASK

This is the flask file. from flask import render_template from app import app @app.route('/') @app.route('/index') def index(): user = {'nickname': 'Miguel'} # fake user return render_template('index.html',title='Home',user=user) This is…
Neal Liddle
  • 21
  • 1
  • 4
1
vote
1 answer

How to remove a prepros project from outside the app

I have unintentionally made my desktop a prepros project and prepors can't process all of the files so when I go to open prepros it crashes making it virtually useless. I have tried uninstalling and reinstalling the app but Desktop is still a…
John AZ1
  • 177
  • 2
  • 9
1
vote
1 answer

Prepros: Watching all files but compile only main

I have a problem with Prepros configuration. I want to watch for changes in all *.scss files in my project, but I want to compile only the style.css file. Content of style.scss: @import "_bootstrap"; @import "_bootstrap-compass.scss"; @import…
matox
  • 885
  • 11
  • 27
1
vote
1 answer

How to embed escaped scss code in Jade

I'm using Prepros to compile *.jade templates. Current Jade code: pre code.hljs .ui-button { @include button; &.xs {@include button-size(xs);} &.sm {@include button-size(sm);} &.md {@include button-size(md);} &.lg…
Dariusz Sikorski
  • 4,309
  • 5
  • 27
  • 44
1
vote
2 answers

Using sass breakpoint with Prepros

Is there any way to use "breakpoint" for sass within "Prepros" ?
brighthero
  • 135
  • 3
  • 12
1
vote
1 answer

SCSS @media compile error

I'm using Prepros to compile my SCSS files to CSS, but it gives me an error when i try to use media queries. I tried Coala and Scout as well. If i just copy this code into output CSS it works. What am i doing wrong? @media only screen and…
Nikita K.
  • 23
  • 1
  • 5
1
vote
1 answer

compiling SASS on Prepros with compass - failed to compile when attempting to import compass

Having completely given up attempting to touch the command line for SASS compiling, I have installed Prepos which seems to have a decent interface, and at least seems to be able to do the basics like compile SASS. This compiles nicely when I save…
Inigo
  • 8,110
  • 18
  • 62
  • 110
1
vote
0 answers

PHP Storm compile scss by Prepros

Before i coded scss files with phpstorm 8 EAP and compile with Prepros. In each scss files I had a green line with "File watcher 'SCSS' is avaible for this file, ..... Now I haven"t anymore this line and Prepros don't compile. I tried to delete the…
Lolo
  • 527
  • 2
  • 8
  • 26
1
vote
3 answers

compass removes css comments in compiled css

i really need having my comments compiled in the final css file of my compass project, but all my comments are deleted while compiling. i tried setting line_comments = true in the config.rb file and i get the line comments, but not my own…
valerio0999
  • 11,458
  • 7
  • 28
  • 56