Skip to content
This repository has been archived by the owner on Jul 13, 2020. It is now read-only.

Commit

Permalink
Bumped all dependencies to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Goldberg committed Aug 16, 2018
1 parent 766080f commit b1f7f56
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 21 deletions.
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,3 @@ coverage/

# Added by shenanigans-manager for maps testing
Maps.test.ts

# Local development typically uses npm install --link
# Package lock files aren't updated by linked installs
package-lock.json
yarn.lock
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
after_script: greenkeeper-lockfile-upload

before_install: npm i -g greenkeeper-lockfile npm@latest

before_script: greenkeeper-lockfile-update

install: npm install

language: node_js

node_js:
Expand Down
5 changes: 5 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 14 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,31 @@
"description": "Gates feature flags behind generational gaps.",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/lodash": "^4.14.109",
"@types/lolex": "^2.1.2",
"@types/mocha": "^5.2.2",
"@types/lodash": "^4.14.116",
"@types/lolex": "^2.1.3",
"@types/mocha": "^5.2.5",
"@types/sinon": "^5.0.1",
"@types/sinon-chai": "^3.2.0",
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"concurrently": "^3.6.1",
"glob": "^7.1.2",
"istanbul": "^0.4.5",
"lolex": "^2.7.0",
"lolex": "^2.7.1",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"mocha-headless-chrome": "^2.0.0",
"mocha-headless-chrome": "^2.0.1",
"requirejs": "^2.3.5",
"run-for-every-file": "^1.1.0",
"shenanigans-manager": "^0.2.31",
"sinon": "^6.0.0",
"shenanigans-manager": "^0.2.32",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0",
"tslint": "5.10.0",
"tslint": "5.11.0",
"tsutils": "^3.0.0",
"typedoc": "^0.11.1",
"typescript": "^2.9.2",
"typescript": "^3.0.1",
"watch": "^1.0.2",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8"
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
},
"license": "MIT",
"name": "flagswappr",
Expand All @@ -57,6 +57,7 @@
"src": "npm run src:tsc && npm run src:tslint",
"src:tsc": "tsc -p .",
"src:tslint": "tslint -c tslint.json -p tsconfig.json -t stylish",
"src:tslint:fix": "tslint -c tslint.json --fix -p tsconfig.json -t stylish",
"test": "npm run test:setup && npm run test:run",
"test:coverage": "npm run test:coverage:generate-html && npm run test:coverage:instrument && npm run test:coverage:run && npm run test:coverage:report",
"test:coverage:generate-html": "shenanigans-manager generate-test-html --source instrumented",
Expand All @@ -79,4 +80,4 @@
},
"types": "./src/index.d.ts",
"version": "0.7.3"
}
}
9 changes: 6 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,18 @@
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"lib": ["dom", "es2015.collection", "es2015.promise", "es5"],
"lib": ["dom", "es2015"],
"module": "amd",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"pretty": true,
"strictNullChecks": true,
"strict": true,
"strictPropertyInitialization": false,
"target": "es5"
},
"exclude": [
Expand Down

0 comments on commit b1f7f56

Please sign in to comment.