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
4
votes
2 answers

Sass @use not working with separated mixin files into master mixin file (ERR: Undefined Mixin)

I'm a bit newer to sass, but when I was learning it the Sass website said to start using @use instead of import, so after a lot of trial and error I finally figured out how to use it pretty much the same as import. Note: I'm using Prepros for…
Zack Plauché
  • 3,307
  • 4
  • 18
  • 34
4
votes
1 answer

Short-hand hexadecimal value converted to full hexadecimal value, Less preprocessing

I've been experiencing a syntax issue with Less preprocessing tools like Koala and Prepros (OSX 10.10.5, Yosemite) where a color value I've defined in short-hand hexadecimal (e.g. #fff, #000, etc.) will output as #fffffff or #000000 in the final…
markreyes
  • 1,249
  • 1
  • 13
  • 27
4
votes
1 answer

What's the benefit using Gulp over Prepros?

I have been using prepros for a while. It's a easy to use precompiler that pretty much does everything I need. I heard it is not good for team work but didn't know why. Why would you spend time to set up gulp to for minification, concatenation,…
user2734550
  • 952
  • 1
  • 12
  • 35
3
votes
3 answers

Can I import Partials into Partials in SASS?

I'm using Sass to style a new website. Originally my style.scss (the main SCSS file which compiles) imported general.scss (where I defined variables) and the various pages (such as homepage.scss). It worked well. I than tried to refactor…
Ben Carp
  • 24,214
  • 9
  • 60
  • 72
3
votes
1 answer

Folders uploading in Prepros

I'm making a new folder and place some files in it. When I'm trying to upload that new folder via FTP prepros shows an error (No such file or directory). As I understand it doesn't make that new folder and trying just to upload all file inside the…
archer
  • 31
  • 2
3
votes
3 answers

How can I fix this compile error, when attempting to compile sass using Prepros and Gumby?

I am using windows 7 to compile .scss with an application known as Prepros. (http://alphapixels.com/prepros/ ). I also downloaded the Gumby Framework(http://gumbyframework.com/) into my document root directory of localhost web-server. My goal is to…
Daniel Dropik
  • 773
  • 1
  • 8
  • 17
2
votes
1 answer

trying to get an {% include header.html %} prompt to work

Trying to learn html and was trying to execute an include header.html, pulling information from an _includes folder that held the header.html file, but its not showing up on the local server. Using prepros as my server. This is the result I'm…
hansen
  • 21
  • 1
2
votes
0 answers

Can I change the server root of my Prepros live preview?

I am building a site with Prepros using pug and have a directory structure similar to this: /my-project +-dist | index.html | | | +-images | logo.png | +-pug index.pug I want to use absolute links in my final build. For example…
Tantalus
  • 397
  • 1
  • 3
  • 11
2
votes
1 answer

SASS and Prepross: git does not detect changes in processed .css file

Hello I'm using Prepros 6.1.1 as a preprocessor for my SASS files. Everything works fine but my git does not detect changes to the processed .css file when I make changes in .sass file and compile it with Prepros. When I do "git status" after…
Cluendo
  • 81
  • 2
  • 7
2
votes
2 answers

Why is Prepros compiling scss files prefixed with underscore?

I've generated a couple of helper scss files within my scss project folder indicated by a '_' prefix. On file change however, prepros will compile them into a css file. As I understand how this should work is _ should indicate to the pre-processor…
Maniaque
  • 712
  • 1
  • 7
  • 20
2
votes
1 answer

Compilation of Sass using PrePros on Windows

I've inherited a project that uses Sass. I'm a 'NET developer so compiling CSS isn't really something ive had much exposure to. The previous developer told me (as I run on Windows and he runs on a MAC) to install prepros. The steps I have run…
dotdev
  • 543
  • 7
  • 19
2
votes
1 answer

How to include js parts of code inside another js file with code. [Prepros]

Prepros has useful feature: //@prepros-prepend filename.js which includes js file at the beginning of current one, but I need to include files inside jquery document.ready statement, which would look like so: $(function(){ //@prepros-include…
Dariusz Sikorski
  • 4,309
  • 5
  • 27
  • 44
2
votes
0 answers

Prevent LESS mixins with duplicate pseudo classes from creating additional CSS definitions

I have created a number of mixins to speed up setting anchor properties for each state. In this example I have a mixin for text-decoration and another for background-color. .link-text-decoration(@default, @hover, @active, @visited) { …
2
votes
1 answer

Sass and Keyframes

I'm trying to create a spinning circle using css keyframes, but I'm having difficulty trying to get this to work in Sass. Here's my html:

Playing around with keyframes

2
votes
2 answers

Code working in Codepen but not in Prepros?

I have some CSS Stylus code which compiles perfectly on CodePen: for i in (1..3) $keyframe-name = (name + i) @keyframes {$keyframe-name} 0% height 0 75% height 10px 100% However, when I compile in Prepros…
user43251
  • 225
  • 1
  • 11
1
2 3 4 5