-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pre-seeds for ovirt-engine-ui-extensions, ovirt-web-ui
Add pre-seed for changes: - https://gerrit.ovirt.org/c/ovirt-engine-ui-extensions/+/115519 - https://gerrit.ovirt.org/c/ovirt-engine-ui-extensions/+/115816 - oVirt/ovirt-web-ui#1479 Remove for merged changes: - oVirt/ovirt-web-ui#1460 Change-Id: I5592dcc6f3f1619caf7a383d10cfb19a037ea332 Signed-off-by: Scott J Dickerson <[email protected]>
- Loading branch information
Showing
7 changed files
with
28,470 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Name: ovirt-engine-nodejs-modules | ||
Version: 2.0.54 | ||
Version: 2.0.55 | ||
Release: 1%{?dist} | ||
Summary: Node.js modules required to build oVirt JavaScript applications | ||
Group: Virtualization/Management | ||
|
@@ -42,6 +42,15 @@ install -m 755 %{_yarn} %{dest}/bin/yarn | |
%{_datadir}/%{name} | ||
|
||
%changelog | ||
* Wed Jul 21 2021 Scott J Dickerson <[email protected]> - 2.0.55-1 | ||
Add pre-seed for changes: | ||
- https://gerrit.ovirt.org/c/ovirt-engine-ui-extensions/+/115519 | ||
- https://gerrit.ovirt.org/c/ovirt-engine-ui-extensions/+/115816 | ||
- https://github.com/oVirt/ovirt-web-ui/pull/1479 | ||
|
||
Remove pre-seeds for merged/closed changes: | ||
- https://github.com/oVirt/ovirt-web-ui/pull/1460 | ||
|
||
* Thu Jun 24 2021 Scott J Dickerson <[email protected]> - 2.0.54-1 | ||
Add pre-seed for change: | ||
- https://github.com/oVirt/ovirt-web-ui/pull/1460 | ||
|
117 changes: 117 additions & 0 deletions
117
pre-seed/ovirt-engine-ui-extensions_I7368a8d6f3606175a4791f24c4bcdb2fcc45c0fd/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
{ | ||
"name": "ovirt-engine-ui-extensions", | ||
"version": "1.2.7", | ||
"description": "UI plugin that provides various extensions to oVirt administration UI, such as dashboard, migrate vm, and cluster upgrade", | ||
"license": "Apache-2.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://gerrit.ovirt.org/ovirt-engine-ui-extensions" | ||
}, | ||
"scripts": { | ||
"prebuild": "yarn test", | ||
"build": "NODE_ENV=production webpack --config webpack.prod.js", | ||
"build:analyze": "NODE_ENV=production Q=1 webpack --progress --config webpack.prod.js --profile --json > stats.json && webpack-bundle-analyzer ./stats.json", | ||
"dev": "NODE_ENV=development webpack --progress --config webpack.dev.js", | ||
"dev:analyze": "NODE_ENV=development Q=1 webpack --progress --config webpack.dev.js --profile --json > stats.json && webpack-bundle-analyzer ./stats.json", | ||
"dev:watch": "yarn dev --watch", | ||
"intl:extract": "node zanata/extract-translations.js && rip json2pot 'extra/messages/**/*.json' -o 'extra/messages/messages.pot'", | ||
"intl:push": "zanata/zanata-push.sh", | ||
"intl:pull": "zanata/zanata-pull.sh", | ||
"intl:apply": "rip po2json 'extra/messages/po/messages.*.po' -m 'extra/messages/**/*.json' -o 'src/intl/translations.json'", | ||
"intl:normalize": "node zanata/normalize-translations.js", | ||
"intl:report": "node zanata/report.js", | ||
"intl:sync": "node zanata/sync-messages.js", | ||
"lint": "eslint . --ext js,jsx", | ||
"pretest": "yarn lint", | ||
"test": "NODE_ENV=test jest --no-watch", | ||
"test:watch": "NODE_ENV=test jest --watch" | ||
}, | ||
"dependencies": { | ||
"@patternfly/patternfly": "^4.65.6", | ||
"@patternfly/react-charts": "^6.12.2", | ||
"@patternfly/react-core": "^4.79.2", | ||
"@patternfly/react-icons": "^4.7.18", | ||
"@patternfly/react-table": "^4.19.24", | ||
"bootstrap": "3.4.1", | ||
"c3": "0.4.22", | ||
"classnames": "^2.2.3", | ||
"core-js": "^3.1.4", | ||
"css-element-queries": "^0.4.0", | ||
"d3": "^3.5.16", | ||
"intl": "^1.2.4", | ||
"intl-messageformat": "^7.2.1", | ||
"jquery": "3.5.1", | ||
"lodash": "^4.17.21", | ||
"moment": "^2.20.1", | ||
"patternfly": "3.59.5", | ||
"patternfly-react": "2.39.17", | ||
"prop-types": "^15.6.0", | ||
"react": "~16.9.0", | ||
"react-dom": "~16.9.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.14.6", | ||
"@babel/eslint-parser": "^7.14.7", | ||
"@babel/eslint-plugin": "^7.14.5", | ||
"@babel/preset-env": "^7.14.7", | ||
"@babel/preset-react": "^7.14.5", | ||
"@testing-library/react-hooks": "^3.3.0", | ||
"babel-jest": "^27.0.6", | ||
"babel-loader": "^8.2.2", | ||
"chalk": "^2.4.2", | ||
"clean-webpack-plugin": "^3.0.0", | ||
"copy-webpack-plugin": "^5.0.4", | ||
"css-loader": "^3.1.0", | ||
"enzyme": "^3.11.0", | ||
"enzyme-adapter-react-16": "^1.15.2", | ||
"eslint": "^7.29.0", | ||
"eslint-config-standard": "^16.0.3", | ||
"eslint-config-standard-jsx": "^10.0.0", | ||
"eslint-config-standard-react": "^11.0.1", | ||
"eslint-plugin-import": "^2.23.4", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^5.1.0", | ||
"eslint-plugin-react": "^7.24.0", | ||
"eslint-plugin-react-hooks": "^4.2.0", | ||
"eslint-plugin-standard": "^5.0.0", | ||
"file-loader": "^4.1.0", | ||
"fs-extra": "^5.0.0", | ||
"html-loader": "^0.5.5", | ||
"html-webpack-plugin": "^3.2.0", | ||
"identity-obj-proxy": "^3.0.0", | ||
"imports-loader": "^0.8.0", | ||
"inline-manifest-webpack-plugin": "^4.0.2", | ||
"intl-messageformat-parser": "^1.2.0", | ||
"isomorphic-git": "^0.67.2", | ||
"jest": "^25.5.3", | ||
"json-stable-stringify": "^1.0.1", | ||
"mini-css-extract-plugin": "^0.8.0", | ||
"optimize-css-assets-webpack-plugin": "^5.0.3", | ||
"react-intl-po": "^1.2.0", | ||
"react-test-renderer": "^16.13.1", | ||
"style-loader": "^0.23.1", | ||
"table": "^5.4.6", | ||
"terser-webpack-plugin": "^1.4.1", | ||
"url-loader": "^2.1.0", | ||
"webpack": "^4.39.3", | ||
"webpack-bundle-analyzer": "^3.5.0", | ||
"webpack-cli": "^3.3.6", | ||
"webpack-merge": "^4.2.2" | ||
}, | ||
"resolutions": { | ||
"glob-parent": "^5.1.2", | ||
"path-parse": "^1.0.7", | ||
"ua-parser-js": "^0.7.22", | ||
"underscore": "1.13.1" | ||
}, | ||
"browserslist": [ | ||
">1%", | ||
"last 2 Chrome versions", | ||
"last 2 Edge versions", | ||
"last 2 Firefox versions", | ||
"last 2 Safari versions", | ||
"Firefox ESR", | ||
"not ie > 0", | ||
"not dead" | ||
] | ||
} |
Oops, something went wrong.