BREAKING CHANGE(scope): update scope to @pushrocks

This commit is contained in:
2018-09-20 00:47:15 +02:00
parent 42573648b9
commit 581bae156e
16 changed files with 2134 additions and 1407 deletions

0
test/test.scss Normal file
View File

12
test/test.ts Normal file
View File

@ -0,0 +1,12 @@
import { tap, expect } from '@pushrocks/tapbundle';
import * as smartsass from '../ts/index';
tap.test('should create a valid instance of smartsass', async () => {
const testsmartSass = new smartsass.Smartsass({
data: 'hello'
})
expect(testsmartSass).to.be.instanceof(smartsass.Smartsass);
});
tap.start();