Skip to content

Commit

Permalink
Merge pull request #233 from Caleydo/release-7.0.0
Browse files Browse the repository at this point in the history
Release 7.0.0
  • Loading branch information
Christian Lehner authored Mar 18, 2020
2 parents d1f6105 + 35526c3 commit 3745ca6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @thinkh
23 changes: 11 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ordino",
"description": "Target discovery platform for exploring rankings of genes, disease models, and other entities.",
"version": "6.0.0",
"version": "7.0.0",
"author": {
"name": "The Caleydo Team",
"email": "[email protected]",
Expand Down Expand Up @@ -48,7 +48,7 @@
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"dist": "mkdirp dist && cd build && tar cvzf ../dist/ordino.tar.gz *"
"dist": "mkdir dist && cd build && tar cvzf ../dist/ordino.tar.gz *"
},
"devDependencies": {
"@types/jasmine": "2.5.47",
Expand All @@ -68,30 +68,29 @@
"karma-junit-reporter": "2.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.3",
"mkdirp": "0.5.1",
"node-sass": "^4.12.0",
"node-sass": "^4.13.1",
"null-loader": "0.1.1",
"raw-loader": "0.5.1",
"sass-loader": "6.0.7",
"style-loader": "0.16.1",
"tslib": "1.9.0",
"tslib": "~1.11.0",
"tslint": "5.9.1",
"typedoc": "0.11.1",
"typescript": "2.8.1",
"typedoc": "~0.16.10",
"typescript": "~3.8.2",
"url-loader": "0.5.8",
"webpack": "2.3.3",
"webpack-dev-server": "2.4.2",
"cache-loader": "1.2.0",
"ifdef-loader": "2.0.0",
"fork-ts-checker-webpack-plugin": "0.4.1",
"fork-ts-checker-webpack-plugin": "0.4.4",
"thread-loader": "1.1.2",
"ts-loader": "4.0.1"
},
"dependencies": {
"@types/jquery": "~3.3.6",
"@types/jquery.scrollto": "~1.4.27",
"jquery": "~3.3.1",
"@types/jquery": "~3.3.33",
"@types/jquery.scrollto": "~1.4.28",
"jquery": "~3.4.1",
"jquery.scrollto": "~2.1.2",
"tdp_core": "github:datavisyn/tdp_core#semver:^8.0.0"
"tdp_core": "github:datavisyn/tdp_core#semver:^9.0.0"
}
}
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"moduleResolution": "node",
"jsx": "react",
"experimentalDecorators": true,
"downlevelIteration": true, // required as long as target is `es5`
"lib": [
"dom",
"es2015",
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ function generateWebpack(options) {
'process.env.NODE_ENV': JSON.stringify(options.isProduction ? 'production' : 'development'),
__VERSION__: JSON.stringify(pkg.version),
__LICENSE__: JSON.stringify(pkg.license),
__BUILD_ID__: buildId,
__BUILD_ID__: JSON.stringify(buildId),
__DEBUG__: options.isDev || options.isTest,
__TEST__: options.isTest,
__PRODUCTION__: options.isProduction,
Expand Down

0 comments on commit 3745ca6

Please sign in to comment.