Skip to content

Commit

Permalink
4.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mklopets committed Oct 31, 2019
1 parent 08c0a9f commit e99c45b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

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

24 changes: 16 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-mapbox-gl",
"version": "4.7.2",
"version": "4.7.3",
"description": "A React binding of mapbox-gl-js",
"main": "lib/index.js",
"module": "lib-esm/index.js",
Expand All @@ -10,16 +10,14 @@
"test": "jest",
"test:watch": "jest --watch",
"lint": "tslint --project tsconfig.json",
"build":
"npm run lint && npm run test && npm run build:commonjs && npm run build:esm",
"build": "npm run lint && npm run test && npm run build:commonjs && npm run build:esm",
"build:commonjs": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig-esm.json",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run clean && npm run build",
"version": "npm run build",
"postversion": "git push && git push --tags",
"prettify":
"prettier --write src/*.ts src/*.tsx src/**/*.ts src/**/*.tsx example/src/**/*.ts example/src/**/*.tsx",
"prettify": "prettier --write src/*.ts src/*.tsx src/**/*.ts src/**/*.tsx example/src/**/*.ts example/src/**/*.tsx",
"precommit": "npm run prettify && cd example && node generateRaws.js",
"prepush": "npm run build"
},
Expand All @@ -28,15 +26,25 @@
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": ["ts", "tsx", "js"],
"setupFiles": ["<rootDir>/src/jest/setupFile.ts"],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"setupFiles": [
"<rootDir>/src/jest/setupFile.ts"
],
"setupFilesAfterEnv": [
"<rootDir>/src/jest/setupTestFrameworkScriptFile.ts"
],
"browser": true,
"verbose": true
},
"files": ["lib", "lib-esm", "src"],
"files": [
"lib",
"lib-esm",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alex3165/react-mapbox-gl.git"
Expand Down

0 comments on commit e99c45b

Please sign in to comment.