-
- Downloads
Merge pull request #186 from squidfunk/chore/flow-type-checking
Integrate static type-checking with JSDoc and Flow
Showing
- .eslintignore 4 additions, 0 deletions.eslintignore
- .eslintrc 1 addition, 1 deletion.eslintrc
- .flowconfig 8 additions, 0 deletions.flowconfig
- .githooks/pre-commit/check.sh 13 additions, 5 deletions.githooks/pre-commit/check.sh
- .gitignore 4 additions, 0 deletions.gitignore
- Gulpfile.babel.js 23 additions, 6 deletionsGulpfile.babel.js
- lib/declarations/fastclick.js 36 additions, 0 deletionslib/declarations/fastclick.js
- lib/declarations/js-cookie.js 43 additions, 0 deletionslib/declarations/js-cookie.js
- lib/declarations/jsx.js 34 additions, 0 deletionslib/declarations/jsx.js
- lib/declarations/lunr.js 34 additions, 0 deletionslib/declarations/lunr.js
- lib/declarations/modernizr.js 32 additions, 0 deletionslib/declarations/modernizr.js
- lib/providers/jsx.js 2 additions, 2 deletionslib/providers/jsx.js
- lib/tasks/assets/javascripts/annotate.js 63 additions, 0 deletionslib/tasks/assets/javascripts/annotate.js
- lib/tasks/assets/javascripts/build/application.js 1 addition, 1 deletionlib/tasks/assets/javascripts/build/application.js
- lib/tasks/assets/javascripts/lint.js 1 addition, 1 deletionlib/tasks/assets/javascripts/lint.js
- material/assets/javascripts/application-0dae3d4464.js 0 additions, 3 deletionsmaterial/assets/javascripts/application-0dae3d4464.js
- material/assets/javascripts/application-74bac261f2.js 3 additions, 0 deletionsmaterial/assets/javascripts/application-74bac261f2.js
- material/base.html 1 addition, 1 deletionmaterial/base.html
- material/partials/search.html 1 addition, 1 deletionmaterial/partials/search.html
- package.json 5 additions, 10 deletionspackage.json
.flowconfig
0 → 100644
lib/declarations/fastclick.js
0 → 100644
lib/declarations/js-cookie.js
0 → 100644
lib/declarations/jsx.js
0 → 100644
lib/declarations/lunr.js
0 → 100644
lib/declarations/modernizr.js
0 → 100644
lib/tasks/assets/javascripts/annotate.js
0 → 100644
This diff is collapsed.
This diff is collapsed.
... | @@ -25,6 +25,7 @@ | ... | @@ -25,6 +25,7 @@ |
"scripts": { | "scripts": { | ||
"build": "scripts/build", | "build": "scripts/build", | ||
"clean": "scripts/clean", | "clean": "scripts/clean", | ||
"flow": "scripts/flow", | |||
"lint": "scripts/lint", | "lint": "scripts/lint", | ||
"start": "scripts/start", | "start": "scripts/start", | ||
"test:visual:run": "scripts/test/visual/run", | "test:visual:run": "scripts/test/visual/run", | ||
... | @@ -34,7 +35,7 @@ | ... | @@ -34,7 +35,7 @@ |
"dependencies": {}, | "dependencies": {}, | ||
"devDependencies": { | "devDependencies": { | ||
"autoprefixer": "^6.7.3", | "autoprefixer": "^6.7.3", | ||
"babel-core": "^6.0.0", | "babel-core": "^6.23.0", | ||
"babel-eslint": "^7.1.1", | "babel-eslint": "^7.1.1", | ||
"babel-loader": "^6.3.1", | "babel-loader": "^6.3.1", | ||
"babel-plugin-add-module-exports": "^0.2.1", | "babel-plugin-add-module-exports": "^0.2.1", | ||
... | @@ -48,8 +49,10 @@ | ... | @@ -48,8 +49,10 @@ |
"custom-event-polyfill": "^0.3.0", | "custom-event-polyfill": "^0.3.0", | ||
"del": "^2.2.2", | "del": "^2.2.2", | ||
"ecstatic": "^2.1.0", | "ecstatic": "^2.1.0", | ||
"eslint": "^3.14.0", | "eslint": "^3.16.0", | ||
"fastclick": "^1.0.6", | "fastclick": "^1.0.6", | ||
"flow-bin": "^0.39.0", | |||
"flow-jsdoc": "^0.2.2", | |||
"git-hooks": "^1.1.7", | "git-hooks": "^1.1.7", | ||
"gulp": "^3.9.1", | "gulp": "^3.9.1", | ||
"gulp-changed": "^2.0.0", | "gulp-changed": "^2.0.0", | ||
... | @@ -93,14 +96,6 @@ | ... | @@ -93,14 +96,6 @@ |
"chai": "^3.5.0", | "chai": "^3.5.0", | ||
"eslint-plugin-mocha": "^4.8.0", | "eslint-plugin-mocha": "^4.8.0", | ||
"gemini": "^4.14.3", | "gemini": "^4.14.3", | ||
"karma": "^1.3.0", | |||
"karma-chrome-launcher": "^2.0.0", | |||
"karma-coverage": "^1.1.1", | |||
"karma-mocha": "^1.3.0", | |||
"karma-notify-reporter": "^1.0.1", | |||
"karma-sourcemap-loader": "^0.3.7", | |||
"karma-spec-reporter": "0.0.26", | |||
"karma-webpack": "^2.0.1", | |||
"mocha": "^3.2.0", | "mocha": "^3.2.0", | ||
"moniker": "^0.1.2", | "moniker": "^0.1.2", | ||
"saucelabs": "^1.4.0", | "saucelabs": "^1.4.0", | ||
... | ... |
Please register or sign in to comment