Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMartijn Cuppens <martijn.cuppens@intracto.com>2018-12-31 14:50:11 +0300
committerMartijn Cuppens <martijn.cuppens@gmail.com>2019-02-11 21:27:14 +0300
commit62a772a9c63b42b0df0418b9e58546673aff8e96 (patch)
tree4b1ce72e33aa3900357784db127230fd43c8d33f /test
parent6628f33db3b46ebf651be88b7e12fccf2d97ed53 (diff)
Move files to root to make imports easier
Diffstat (limited to 'test')
-rw-r--r--test/less/main.less2
-rw-r--r--test/less/test-10.less2
-rw-r--r--test/sass/main.scss2
-rw-r--r--test/sass/test-10.scss2
-rw-r--r--test/stylus/main.styl2
-rw-r--r--test/stylus/test-10.styl2
6 files changed, 6 insertions, 6 deletions
diff --git a/test/less/main.less b/test/less/main.less
index cdde369..e01bb61 100644
--- a/test/less/main.less
+++ b/test/less/main.less
@@ -1,4 +1,4 @@
-@import "../../less/rfs";
+@import "../../less";
// responsive-font-size property with `px` unit
.selector-1 {
diff --git a/test/less/test-10.less b/test/less/test-10.less
index 5f93344..d05bf48 100644
--- a/test/less/test-10.less
+++ b/test/less/test-10.less
@@ -1,4 +1,4 @@
-@import "../../less/rfs";
+@import "../../less";
@import "main";
@rfs-base-font-size: 12px;
@rfs-font-size-unit: px;
diff --git a/test/sass/main.scss b/test/sass/main.scss
index 55d8882..d3ddf2b 100644
--- a/test/sass/main.scss
+++ b/test/sass/main.scss
@@ -1,4 +1,4 @@
-@import "../../sass/rfs";
+@import "../../scss";
// responsive-font-size property with `px` unit
.selector-1 {
diff --git a/test/sass/test-10.scss b/test/sass/test-10.scss
index a788bb7..378e100 100644
--- a/test/sass/test-10.scss
+++ b/test/sass/test-10.scss
@@ -6,5 +6,5 @@ $rfs-two-dimensional: true;
$rfs-factor: 5;
$rfs-class: true;
$rfs-safari-iframe-resize-bug-fix: true;
-@import "../../sass/rfs";
+@import "../../scss";
@import "main";
diff --git a/test/stylus/main.styl b/test/stylus/main.styl
index f8b2fb8..8257e44 100644
--- a/test/stylus/main.styl
+++ b/test/stylus/main.styl
@@ -1,4 +1,4 @@
-@import "../../stylus/rfs"
+@import "../../stylus"
.selector-1
background-color: #f00
diff --git a/test/stylus/test-10.styl b/test/stylus/test-10.styl
index 10b84d8..695140f 100644
--- a/test/stylus/test-10.styl
+++ b/test/stylus/test-10.styl
@@ -6,5 +6,5 @@ $rfs-two-dimensional = true
$rfs-factor = 5
$rfs-class = true
$rfs-safari-iframe-resize-bug-fix = true
-@import "../../stylus/rfs";
+@import "../../stylus";
@import "main"