2017 © Pedro Peláez
 

library tapinoma

Compile sass into css and jrsc into js

image

bespired/tapinoma

Compile sass into css and jrsc into js

  • Friday, March 31, 2017
  • by bespired
  • Repository
  • 1 Watchers
  • 0 Stars
  • 13 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Tapinoma

Nodeless Sass and Js for Laravel, (*1)

Getting started

Add Tapinoma to your composer.json file:, (*2)

"require": {
    "bespired/tapinoma": dev-master"
}

Use composer to install this package., (*3)

$ composer update

Get it working

Copy the public assets:, (*4)

$ cp -r vendor/bespired/tapinoma/public/ public/.

Preping the layout:, (*5)

<html>
    <head>
        <title>App Name - @yield('title')</title>
        <link href="https://fonts.googleapis.com/css?family=Oswald:100,300,700|Playfair+Display" rel="stylesheet">
        <link rel="stylesheet" href="/assets/styles.php/style.scss">

    </head>
    <body>
        <div class="container">
            @yield('content')
        </div>
        <script src="/assets/jsrc.php/script.jsrc"></script>
    </body>
</html>

Your resources\assets\style.css should look something like:, (*6)

@import 'sass/settings';
@import 'sass/vendor';
@import 'sass/base';
@import 'sass/app';

and you should have some sass in resources\assets\sass\, (*7)

Your resources\assets\script.jsrc should look something like:, (*8)

@import jsrc/jquery;
@import jsrc/wheel;
@import jsrc/title;
@import jsrc/teletype;

And you should have some js in resources\assets\jsrc\
but nothing that needs transpiling., (*9)

That's it

No node, no ruby, no compass, no nothing., (*10)

The Versions

31/03 2017

dev-master

9999999-dev

Compile sass into css and jrsc into js

  Sources   Download

MIT

The Requires