Skip to content

Commit ebd2374

Browse files
committed
Use yarn and test with jest
1 parent 3d96fcb commit ebd2374

File tree

8 files changed

+3449
-185
lines changed

8 files changed

+3449
-185
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
2-
lib/
2+
coverage
3+
lib

.npmignore

Whitespace-only changes.

.travis.yml

-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,3 @@ node_js:
33
- "4"
44
- "6"
55
- "node"
6-
script: npm run travis
7-
8-
before_install:
9-
- '[ "${TRAVIS_NODE_VERSION}" != "0.10" ] || npm install -g npm'

package.json

+22-19
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,27 @@
33
"version": "1.3.0",
44
"description": "PostCSS plugin for CSS Modules to pass arbitrary values between your module files",
55
"main": "lib/index.js",
6+
"files": [
7+
"lib"
8+
],
69
"scripts": {
7-
"lint": "standard src test",
810
"build": "babel --out-dir lib src",
9-
"autotest": "chokidar src test -c 'npm test'",
10-
"test": "mocha --compilers js:babel-core/register",
11-
"posttest": "npm run lint && npm run build",
12-
"travis": "npm run test",
13-
"prepublish": "npm run build"
11+
"lint": "standard src test",
12+
"test": "jest --coverage",
13+
"posttest": "yarn run lint",
14+
"prepublish": "yarn run build"
15+
},
16+
"babel": {
17+
"presets": [
18+
[
19+
"env",
20+
{
21+
"targets": {
22+
"node": 4
23+
}
24+
}
25+
]
26+
]
1427
},
1528
"repository": {
1629
"type": "git",
@@ -29,23 +42,13 @@
2942
"homepage": "https://github.com/css-modules/postcss-modules-values#readme",
3043
"devDependencies": {
3144
"babel-cli": "^6.5.2",
32-
"babel-core": "^6.5.2",
33-
"babel-plugin-add-module-exports": "^0.2.1",
34-
"babel-preset-es2015": "^6.3.13",
35-
"chokidar": "^1.2.0",
36-
"mocha": "^3.0.2",
45+
"babel-jest": "^20.0.3",
46+
"babel-preset-env": "^1.5.0",
47+
"jest": "^20.0.3",
3748
"standard": "^8.4.0"
3849
},
3950
"dependencies": {
4051
"icss-replace-symbols": "^1.1.0",
4152
"postcss": "^6.0.1"
42-
},
43-
"babel": {
44-
"presets": [
45-
"es2015"
46-
],
47-
"plugins": [
48-
"add-module-exports"
49-
]
5053
}
5154
}

src/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import postcss from 'postcss'
2-
import replaceSymbols, {replaceAll} from 'icss-replace-symbols'
1+
const postcss = require('postcss')
2+
const {default: replaceSymbols, replaceAll} = require('icss-replace-symbols')
33

44
const matchImports = /^(.+?|\([\s\S]+?\))\s+from\s+("[^"]*"|'[^']*'|[\w-]+)$/
55
const matchValueDefinition = /(?:\s+|^)([\w-]+):?\s+(.+?)\s*$/g
@@ -8,7 +8,7 @@ let options = {}
88
let importIndex = 0
99
let createImportedName = options && options.createImportedName || ((importName/*, path*/) => `i__const_${importName.replace(/\W/g, '_')}_${importIndex++}`)
1010

11-
export default postcss.plugin('postcss-modules-values', () => (css, result) => {
11+
module.exports = postcss.plugin('postcss-modules-values', () => (css, result) => {
1212
let importAliases = []
1313
let definitions = {}
1414

test/index.js

-158
This file was deleted.

0 commit comments

Comments
 (0)