Skip to content

Commit

Permalink
Move loader into lib folder
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnns committed Dec 26, 2016
1 parent 9a40c7b commit 83a59b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"name": "sass-loader",
"version": "4.1.1",
"description": "Sass loader for webpack",
"main": "index.js",
"main": "lib/loader.js",
"scripts": {
"create-spec": "node test/tools/runCreateSpec.js",
"pretest": "node test/tools/runCreateSpec.js",
"test": "mocha -R spec",
"posttest": "eslint --fix index.js test",
"posttest": "eslint --fix lib test",
"test-bootstrap-sass": "webpack-dev-server --config test/bootstrapSass/webpack.config.js --content-base ./test/bootstrapSass",
"test-source-map": "webpack-dev-server --config test/sourceMap/webpack.config.js --content-base ./test/sourceMap",
"test-watch": "webpack --config test/watch/webpack.config.js",
Expand Down
2 changes: 1 addition & 1 deletion test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const fs = require("fs");
const merge = require("webpack-merge");
const customImporter = require("./tools/customImporter.js");
const customFunctions = require("./tools/customFunctions.js");
const pathToSassLoader = require.resolve("../index.js");
const pathToSassLoader = require.resolve("../lib/loader.js");
const sassLoader = require(pathToSassLoader);

const CR = /\r/g;
Expand Down

0 comments on commit 83a59b3

Please sign in to comment.