Skip to content

Commit c310845

Browse files
committed
build: release 2.2.0 🚀
1 parent f0c7232 commit c310845

File tree

4 files changed

+28
-12
lines changed

4 files changed

+28
-12
lines changed

.prettierrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"singleQuote": true,
3+
"tabWidth": 2,
4+
"quoteProps": "preserve",
5+
"printWidth": 120,
6+
"proseWrap": "preserve"
7+
}

dist/docker-registry-ui.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.html

+13-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,16 @@
1313
1414
You should have received a copy of the GNU Affero General Public License
1515
along with this program. If not, see <http://www.gnu.org/licenses/>.
16-
--><!DOCTYPE html><html><head><meta charset="UTF-8"><link href="docker-registry-ui.css" rel="stylesheet" type="text/css"><meta name="viewport" content="width=device-width, initial-scale=1"><meta property="og:site_name" content="Docker Registry UI" /><meta name="twitter:card" content="summary" /><meta name="twitter:site" content="@Joxit" /><meta name="twitter:creator" content="@Jones Magloire" /><title>Docker Registry UI</title></head><body><docker-registry-ui registry-url="${REGISTRY_URL}" name="${REGISTRY_TITLE}" pull-url="${PULL_URL}"
17-
show-content-digest="${SHOW_CONTENT_DIGEST}" is-image-remove-activated="${DELETE_IMAGES}"
18-
catalog-elements-limit="${CATALOG_ELEMENTS_LIMIT}" single-registry="${SINGLE_REGISTRY}"
19-
default-registries="${DEFAULT_REGISTRIES}" read-only-registries="${READ_ONLY_REGISTRIES}"></docker-registry-ui><script src="docker-registry-ui.js"></script></body></html>
16+
--><!DOCTYPE html><html><head><meta charset="UTF-8" /><link href="docker-registry-ui.css" rel="stylesheet" type="text/css"><meta name="viewport" content="width=device-width, initial-scale=1" /><meta property="og:site_name" content="Docker Registry UI" /><meta name="twitter:card" content="summary" /><meta name="twitter:site" content="@Joxit" /><meta name="twitter:creator" content="@Jones Magloire" /><title>Docker Registry UI</title></head><body><docker-registry-ui
17+
registry-url="${REGISTRY_URL}"
18+
name="${REGISTRY_TITLE}"
19+
pull-url="${PULL_URL}"
20+
show-content-digest="${SHOW_CONTENT_DIGEST}"
21+
is-image-remove-activated="${DELETE_IMAGES}"
22+
catalog-elements-limit="${CATALOG_ELEMENTS_LIMIT}"
23+
single-registry="${SINGLE_REGISTRY}"
24+
default-registries="${DEFAULT_REGISTRIES}"
25+
read-only-registries="${READ_ONLY_REGISTRIES}"
26+
show-catalog-nb-tags="${SHOW_CATALOG_NB_TAGS}"
27+
history-custom-labels="${HISTORY_CUSTOM_LABELS}"
28+
></docker-registry-ui><script src="docker-registry-ui.js"></script></body></html>

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docker-registry-ui",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"scripts": {
55
"format": "npm run format-html && npm run format-js && npm run format-riot",
66
"format-html": "find src rollup rollup.config.js -name '*.html' -exec prettier --config .prettierrc -w --parser html {} \\;",
@@ -18,22 +18,22 @@
1818
"license": "AGPL-3.0",
1919
"description": "A web UI for private docker registry",
2020
"devDependencies": {
21-
"@babel/core": "^7.16.0",
21+
"@babel/core": "^7.17.9",
2222
"@babel/preset-env": "^7.16.0",
2323
"@riotjs/compiler": "^6.1.3",
2424
"@riotjs/observable": "^4.1.1",
2525
"@riotjs/route": "^8.0.1",
2626
"@rollup/plugin-babel": "^5.2.2",
27-
"@rollup/plugin-commonjs": "^21.0.3",
27+
"@rollup/plugin-commonjs": "^21.1.0",
2828
"@rollup/plugin-html": "^0.2.4",
2929
"@rollup/plugin-json": "^4.1.0",
30-
"@rollup/plugin-node-resolve": "^13.1.3",
31-
"core-js": "^3.19.1",
30+
"@rollup/plugin-node-resolve": "^13.2.1",
31+
"core-js": "^3.22.0",
3232
"node-sass": "^7.0.1",
3333
"prettier": "^2.6.2",
3434
"riot": "^6.1.2",
3535
"riot-mui": "github:joxit/riot-5-mui#4d68d7f",
36-
"rollup": "^2.59.0",
36+
"rollup": "^2.70.2",
3737
"rollup-plugin-app-utils": "^1.0.6",
3838
"rollup-plugin-commonjs": "^10.1.0",
3939
"rollup-plugin-copy": "^3.4.0",

0 commit comments

Comments
 (0)