Skip to content

Commit

Permalink
🆕 Run flow in CI and upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Steel Brain committed Aug 26, 2016
1 parent a804def commit 808811c
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 33 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["steelbrain"]
}
6 changes: 6 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "steelbrain",
"rules": {
"no-duplicate-imports": 0
}
}
2 changes: 1 addition & 1 deletion .flowconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[ignore]
.*/lib/*
lib/*

[include]

Expand Down
15 changes: 0 additions & 15 deletions .ucompiler

This file was deleted.

27 changes: 10 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
"description": "Helper module for atom linter providers",
"main": "lib/index.js",
"scripts": {
"lint": "(flow check) && (eslint .)",
"test": "apm test",
"lint": "eslint .",
"watch": "ucompiler watch",
"compile": "ucompiler go"
"clean": "rm -rf lib",
"compile": "npm run clean && babel src --out-dir lib",
"watch": "npm run clean && babel src --out-dir lib --watch"
},
"repository": {
"type": "git",
Expand All @@ -26,22 +27,14 @@
"dependencies": {
"named-js-regexp": "^1.3.1",
"sb-exec": "^3.0.1",
"sb-promisify": "^1.0.0",
"sb-promisify": "^2.0.1",
"tmp": "~0.0.28"
},
"devDependencies": {
"babel-eslint": "^6.0.0-beta.6",
"babel-preset-steelbrain": "^2.0.1",
"eslint-config-steelbrain": "^1.0.1",
"jasmine-fix": "^1.0.0",
"ucompiler": "^3.0.1",
"ucompiler-plugin-babel": "^3.0.0",
"ucompiler-plugin-newline": "^3.0.0"
},
"eslintConfig": {
"extends": "steelbrain",
"rules": {
"no-duplicate-imports": 0
}
"babel-cli": "^6.10.1",
"babel-preset-steelbrain": "^4.0.1",
"eslint-config-steelbrain": "^1.0.4",
"flow-bin": "^0.31.1",
"jasmine-fix": "^1.0.1"
}
}

0 comments on commit 808811c

Please sign in to comment.