Skip to content
This repository has been archived by the owner on Nov 20, 2018. It is now read-only.

Commit

Permalink
feat(build) drop grunt, core & dnd builds (#1635)
Browse files Browse the repository at this point in the history
closes #1569 
closes #1605 
closes #1581 
closes #1607
  • Loading branch information
rnicholus authored Aug 8, 2016
1 parent 0dd21d3 commit 7f01e6e
Show file tree
Hide file tree
Showing 74 changed files with 575 additions and 1,882 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ master
hardcopy*
selenium.log*

pid.txt
root-server.PID
test-resources-server.PID

fine-uploader/
test/upload/*
Expand All @@ -35,8 +36,6 @@ node_modules/

bin/

build/

src

npm-debug.log
Expand Down
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

18 changes: 14 additions & 4 deletions .jscsrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
{
"excludeFiles": ["client/js/third-party/**/*.js"],
"preset": "airbnb",

"disallowKeywordsOnNewLine": false,
"disallowMultipleVarDecl": false,
"disallowSpaceAfterObjectKeys": true,

"disallowSpacesInCallExpression": false,
"maximumLineLength": false,
"validateIndentation": 4,
"validateQuoteMarks": "\"",

"requireDollarBeforejQueryAssignment": false,
"requirePaddingNewLinesAfterBlocks": false,
"requirePaddingNewLinesBeforeLineComments": false,
"requireSpaceAfterComma": false,
"requireSpacesInAnonymousFunctionExpression": false,
"requireSpaceBeforeBlockStatements": false,
"requireSpacesInsideObjectBrackets": false,
"requireTrailingComma": false,
"safeContextKeyword": ["self", "handler", "thisSignatureRequester", "controller"]
}
}
2 changes: 1 addition & 1 deletion .jshintignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
client/js/third-party/*.js
client/js/third-party/*
2 changes: 1 addition & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"eqeqeq" : true, // Require triple equals i.e. `===`.
"forin" : true, // Tolerate `for in` loops without `hasOwnPrototype`.
"immed" : true, // Require immediate invocations to be wrapped in parens e.g. `( function(){}() );`
"latedef" : true, // Prohibit variable use before definition.
"latedef" : false, // Prohibit variable use before definition.
"newcap" : true, // Require capitalization of all constructor functions e.g. `new F()`.
"noarg" : true, // Prohibit use of `arguments.caller` and `arguments.callee`.
"noempty" : true, // Prohibit use of empty blocks.
Expand Down
11 changes: 1 addition & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ sudo: false
language: node_js

node_js:
- '0.10.33'
- '5.0.0'

env:
global:
- LOGS_DIR=/tmp/fineuploader-build/logs
- DISPLAY=:99.0
- secure: |-
AZ/GEWzykeSzxh+4r14eKq2dMQnZyEvx99zFnTSp30Ke9QqJP3UQvMdwHzuV
Expand All @@ -23,11 +22,3 @@ env:
before_script:
- "sh -e /etc/init.d/xvfb start"

branches:
only:
- master
- develop
- /^feature.*$/
- /^.*fix.*$/
- /^release.*$/
File renamed without changes.
70 changes: 0 additions & 70 deletions Gruntfile.js

This file was deleted.

Loading

0 comments on commit 7f01e6e

Please sign in to comment.