Skip to content

Commit

Permalink
Merge 4b09313 into 86cc2d0
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzzz committed Aug 17, 2018
2 parents 86cc2d0 + 4b09313 commit 42f2058
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -60,7 +60,8 @@ jobs:
if: tag =~ ^v\d+\.
script:
- npm run prebuild
- npm run build:publish
- npm run build:publish-cjs
- npm run build:publish-esm
- npm run webbuild
deploy:
provider: npm
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

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

6 changes: 4 additions & 2 deletions package.json
Expand Up @@ -3,11 +3,13 @@
"version": "1.4.0",
"description": "Property based testing framework for JavaScript (like QuickCheck)",
"main": "lib/fast-check.js",
"module": "lib/esm/fast-check.js",
"types": "lib/fast-check.d.ts",
"scripts": {
"prebuild": "ts-node prebuild/prebuild.ts",
"build": "tsc",
"build:publish": "tsc -p tsconfig.publish.json",
"build:publish-cjs": "tsc -p tsconfig.publish.json",
"build:publish-esm": "tsc -p tsconfig.publish.json --module es2015 --moduleResolution node --outDir lib/esm",
"webbuild": "browserify lib/fast-check.js --s fastcheck | uglifyjs -cm > lib/bundle.js",
"watch": "tsc -w",
"test": "npm run build && nyc mocha \"test/unit/**/*.spec.ts\"",
Expand All @@ -34,7 +36,7 @@
},
"dependencies": {
"lorem-ipsum": "^1.0.4",
"pure-rand": "^1.1.1"
"pure-rand": "^1.2.0"
},
"devDependencies": {
"@types/lorem-ipsum": "^1.0.2",
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Expand Up @@ -9,6 +9,7 @@
"preserveConstEnums": true,
"strictNullChecks": true,
"downlevelIteration": true,
"module": "commonjs",
"target": "es3",
"lib": [
"esnext"
Expand Down

0 comments on commit 42f2058

Please sign in to comment.