Added test for import module fix

This commit is contained in:
Rob Huzzey
2017-10-18 11:37:40 +03:00
parent ea6246e16d
commit 7be05d7a4d
6 changed files with 25 additions and 1 deletions

View File

@@ -61,12 +61,13 @@
"grunt-eslint": "^19.0.0",
"grunt-saucelabs": "^9.0.0",
"grunt-shell": "^1.3.0",
"import-module": "file:test/import-module",
"jit-grunt": "^0.10.0",
"less-plugin-clean-css": "^1.5.1",
"performance-now": "^0.2.0",
"phantomjs-prebuilt": "^2.1.7",
"promise": "^7.1.1",
"phin": "^2.2.3",
"promise": "^7.1.1",
"time-grunt": "^1.3.0"
},
"keywords": [

View File

@@ -0,0 +1,3 @@
.one {
color: red;
}

View File

@@ -0,0 +1,3 @@
.two {
color: blue;
}

View File

@@ -0,0 +1,3 @@
.three {
color: green;
}

View File

@@ -0,0 +1,11 @@
{
"name": "import-module",
"version": "1.0.0",
"description": "Less files to be included in node_modules directory for testing import from node_modules",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Rob Huzzey <robert.huzzey@holidayextras.com>",
"license": "ISC"
}

View File

@@ -0,0 +1,3 @@
@import 'import-module/one/two/three/3.less';
@import 'import-module/one/two/2.less';
@import 'import-module/one/1.less';