Skip to content

Commit

Permalink
remove gulp and mocha
Browse files Browse the repository at this point in the history
  • Loading branch information
Quramy committed Apr 21, 2018
1 parent 3941e6f commit 7a8bb37
Show file tree
Hide file tree
Showing 7 changed files with 2,488 additions and 907 deletions.
13 changes: 13 additions & 0 deletions .babelrc
@@ -0,0 +1,13 @@
{
"presets": [
"env",
"react",
"stage-0"
],
"plugins": [
"transform-class-properties",
"transform-decorators",
"transform-react-constant-elements",
"transform-react-inline-elements"
]
}
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -7,3 +7,4 @@ example/bundle.css
*.swp
*.swo
lib/
coverage/
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -8,6 +8,7 @@ language: node_js
node_js:
- 6
- 8
- 9
deploy:
provider: npm
email: yosuke.kurami@gmail.com
Expand Down
25 changes: 0 additions & 25 deletions gulpfile.js

This file was deleted.

23 changes: 13 additions & 10 deletions package.json
Expand Up @@ -4,9 +4,10 @@
"description": "Creates .d.ts files from CSS Modules .css files",
"main": "index.js",
"scripts": {
"build": "gulp compile",
"watch": "gulp watch",
"test": "npm run build && gulp test",
"build": "babel -d lib src",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --coverage",
"prepublish": "npm run build"
},
"bin": {
Expand All @@ -33,12 +34,14 @@
"yargs": "^8.0.2"
},
"devDependencies": {
"assert": "^1.3.0",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"gulp": "^3.9.0",
"gulp-babel": "^7.0.0",
"gulp-mocha": "^4.3.1",
"gulp-plumber": "^1.0.1"
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-env": "^2.4.1",
"babel-jest": "^22.4.3",
"jest": "^22.4.3",
"regenerator-runtime": "^0.11.1"
},
"jest": {
"transform": {}
}
}
2 changes: 0 additions & 2 deletions src/cli.js
@@ -1,7 +1,5 @@
#!/usr/bin/env node

'use strict';

import path from 'path';
import chokidar from 'chokidar';
import glob from 'glob';
Expand Down

0 comments on commit 7a8bb37

Please sign in to comment.