Skip to content

Commit

Permalink
Rename lib folder into src
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalduez committed Sep 16, 2016
1 parent 3f98e4c commit 57e3b2f
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ all: lint dist test

dist:
rm -rf $@
babel lib -d $@
babel ./src -d $@

develop: dist
babel-node $@
Expand All @@ -18,7 +18,7 @@ develop: dist
# ============

lint:
eslint ./lib ./test
eslint ./src ./test

test: lint
jest
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"lib/*.js"
"src/*.js"
]
},
"dependencies": {
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/control.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fs from 'fs';
import path from 'path';
import postcss from 'postcss';
import plugin from '../lib';
import plugin from '../src';

const pluginName = require('../package.json').name;

Expand Down
2 changes: 1 addition & 1 deletion test/map.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fs from 'fs';
import path from 'path';
import postcss from 'postcss';
import plugin from '../lib';
import plugin from '../src';

const read = name =>
fs.readFileSync(path.join(__dirname, 'fixture', name), 'utf8');
Expand Down

0 comments on commit 57e3b2f

Please sign in to comment.