Skip to content

Commit

Permalink
[stable-4.9] test & test-workflow cleanup (#4973)
Browse files Browse the repository at this point in the history
* [stable-4.9] test & test-workflow cleanup

No-Issue

* 2 spaces package.json
  • Loading branch information
himdel authored Apr 8, 2024
1 parent dfe9506 commit 25b9c00
Show file tree
Hide file tree
Showing 9 changed files with 14,844 additions and 15,001 deletions.
29,424 changes: 14,712 additions & 14,712 deletions package-lock.json

Large diffs are not rendered by default.

209 changes: 103 additions & 106 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,108 +1,105 @@
{
"name": "ansible-hub-ui",
"version": "0.1.0",
"license": "Apache-2.0",
"author": "Red Hat, Inc.",
"private": true,
"dependencies": {
"@babel/runtime": "^7.24.1",
"@lingui/react": "^4.7.2",
"@patternfly/patternfly": "^4.224.5",
"@patternfly/react-code-editor": "^4.82.122",
"@patternfly/react-core": "^4.278.1",
"@patternfly/react-table": "^4.113.7",
"@types/node": "^18.19.21",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"antsibull-docs": "^1.0.0",
"axios": "^1.6.7",
"classnames": "^2.5.1",
"csstype": "^3.1.3",
"detect-browser": "^5.3.0",
"file-saver": "^2.0.5",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"monaco-editor": "^0.34.1",
"monaco-yaml": "^4.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^8.0.7",
"react-monaco-editor": "^0.51.0",
"react-router-dom": "^6.22.2",
"react-router-hash-link": "^2.4.3"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@lingui/cli": "^4.7.2",
"@lingui/macro": "^4.7.2",
"@ls-lint/ls-lint": "^2.2.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.14.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^9.1.3",
"babel-plugin-macros": "^3.1.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.10.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.6",
"monaco-editor-webpack-plugin": "^7.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"source-map-loader": "^5.0.0",
"style-loader": "^3.3.4",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-scss": "^5.3.2",
"typescript": "^5.3.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"scripts": {
"build-standalone": "NODE_ENV=production webpack --config config/standalone.prod.webpack.config.js",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx src/ config/ test/",
"eslint:fix": "eslint --ext .js,.jsx,.ts,.tsx --fix src/ config/ test/",
"find-unused-exports": "npx find-unused-exports --module-glob 'src/**/*.{js,ts,jsx,tsx}' --resolve-file-extensions 'tsx,ts,jsx,js' --resolve-index-files",
"gettext:compile": "lingui compile",
"gettext:extract": "lingui extract",
"imports-to-relative": "perl -i -pe 's#from '\\''src/#from '\\''../#' src/*/*.* ; perl -i -pe 's#from '\\''src/#from '\\''../../#' src/*/*/*.* ; perl -i -pe 's#from '\\''src/#from '\\''../../../#' src/*/*/*/*.*",
"imports-to-src": "perl -i -pe 's#from '\\''\\.\\./#from '\\''src/#' src/*/*.* ; perl -i -pe 's#from '\\''\\.\\./\\.\\./#from '\\''src/#' src/*/*/*.* ; perl -i -pe 's#from '\\''\\.\\./\\.\\./\\.\\./#from '\\''src/#' src/*/*/*/*.*",
"lint": "npm-run-all lint:*",
"lint-fix": "npm-run-all lint:*:fix",
"lint-setup": "npm-run-all lint:*:setup",
"lint:js": "npm run prettier:check && npm run eslint",
"lint:js:fix": "npm run eslint:fix && npm run prettier",
"lint:ls": "ls-lint",
"lint:po": "lint-po locale/*.po",
"lint:po:setup": "pip install --upgrade lint-po",
"lint:sass": "stylelint 'src/**/*.scss' --config .stylelintrc.json",
"lint:ts": "tsc",
"lint:yaml": "yamllint .",
"lint:yaml:setup": "pip install --upgrade yamllint",
"prettier": "prettier --write 'src/**' 'config/**' 'test/**'",
"prettier:check": "prettier -l 'src/**' 'config/**' 'test/**'",
"sort-exports": "perl -i -pe 's/^export/import/' src/**/index.ts ; npm run prettier ; perl -i -pe 's/^import/export/' src/**/index.ts",
"start-pulp": "NODE_ENV=development API_PROXY_PORT=8080 API_BASE_PATH='/api/galaxy/' webpack serve --host 0.0.0.0 --config config/standalone.dev.webpack.config.js",
"start-standalone": "NODE_ENV=development webpack serve --host 0.0.0.0 --config config/standalone.dev.webpack.config.js",
"test": "npm run test-build && npm run test-run",
"test-build": "test/scripts/ctn-build.sh",
"test-run": "test/scripts/ctn-run.sh"
},
"engines": {
"node": ">=18",
"npm": ">=9"
}
"name": "ansible-hub-ui",
"version": "0.1.0",
"license": "Apache-2.0",
"author": "Red Hat, Inc.",
"private": true,
"dependencies": {
"@babel/runtime": "^7.24.1",
"@lingui/react": "^4.7.2",
"@patternfly/patternfly": "^4.224.5",
"@patternfly/react-code-editor": "^4.82.122",
"@patternfly/react-core": "^4.278.1",
"@patternfly/react-table": "^4.113.7",
"@types/node": "^18.19.21",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"antsibull-docs": "^1.0.0",
"axios": "^1.6.7",
"classnames": "^2.5.1",
"csstype": "^3.1.3",
"detect-browser": "^5.3.0",
"file-saver": "^2.0.5",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"monaco-editor": "^0.34.1",
"monaco-yaml": "^4.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^8.0.7",
"react-monaco-editor": "^0.51.0",
"react-router-dom": "^6.22.2",
"react-router-hash-link": "^2.4.3"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@lingui/cli": "^4.7.2",
"@lingui/macro": "^4.7.2",
"@ls-lint/ls-lint": "^2.2.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.14.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^9.1.3",
"babel-plugin-macros": "^3.1.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.10.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.6",
"monaco-editor-webpack-plugin": "^7.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"source-map-loader": "^5.0.0",
"style-loader": "^3.3.4",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-scss": "^5.3.2",
"typescript": "^5.3.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"scripts": {
"build-standalone": "NODE_ENV=production webpack --config config/standalone.prod.webpack.config.js",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx src/ config/ test/",
"eslint:fix": "eslint --ext .js,.jsx,.ts,.tsx --fix src/ config/ test/",
"find-unused-exports": "npx find-unused-exports --module-glob 'src/**/*.{js,ts,jsx,tsx}' --resolve-file-extensions 'tsx,ts,jsx,js' --resolve-index-files",
"gettext:compile": "lingui compile",
"gettext:extract": "lingui extract",
"imports-to-relative": "perl -i -pe 's#from '\\''src/#from '\\''../#' src/*/*.* ; perl -i -pe 's#from '\\''src/#from '\\''../../#' src/*/*/*.* ; perl -i -pe 's#from '\\''src/#from '\\''../../../#' src/*/*/*/*.*",
"imports-to-src": "perl -i -pe 's#from '\\''\\.\\./#from '\\''src/#' src/*/*.* ; perl -i -pe 's#from '\\''\\.\\./\\.\\./#from '\\''src/#' src/*/*/*.* ; perl -i -pe 's#from '\\''\\.\\./\\.\\./\\.\\./#from '\\''src/#' src/*/*/*/*.*",
"lint": "npm-run-all lint:*",
"lint-fix": "npm-run-all lint:*:fix",
"lint-setup": "npm-run-all lint:*:setup",
"lint:js": "npm run prettier:check && npm run eslint",
"lint:js:fix": "npm run eslint:fix && npm run prettier",
"lint:ls": "ls-lint",
"lint:po": "lint-po locale/*.po",
"lint:po:setup": "pip install --upgrade lint-po",
"lint:sass": "stylelint 'src/**/*.scss' --config .stylelintrc.json",
"lint:ts": "tsc",
"lint:yaml": "yamllint .",
"lint:yaml:setup": "pip install --upgrade yamllint",
"prettier": "prettier --write 'src/**' 'config/**' 'test/**'",
"prettier:check": "prettier -l 'src/**' 'config/**' 'test/**'",
"sort-exports": "perl -i -pe 's/^export/import/' src/**/index.ts ; npm run prettier ; perl -i -pe 's/^import/export/' src/**/index.ts",
"start-pulp": "NODE_ENV=development API_PROXY_PORT=8080 API_BASE_PATH='/api/galaxy/' webpack serve --host 0.0.0.0 --config config/standalone.dev.webpack.config.js",
"start-standalone": "NODE_ENV=development webpack serve --host 0.0.0.0 --config config/standalone.dev.webpack.config.js"
},
"engines": {
"node": ">=18",
"npm": ">=9"
}
}
16 changes: 0 additions & 16 deletions test/Dockerfile

This file was deleted.

Loading

0 comments on commit 25b9c00

Please sign in to comment.