Skip to content

Commit 4ccd30a

Browse files
committed
web: Follow package.json format change, turning "repository" to an object
Done automatically by `npm pkg fix` for package.json, applied by hand for npm-package.json5 (an input for webpack).
1 parent ee96390 commit 4ccd30a

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

web/packages/selfhosted/npm-package.json5

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
],
1010
"homepage": "https://ruffle.rs",
1111
"bugs": "https://github.com/ruffle-rs/ruffle/issues",
12-
"repository": "github:ruffle-rs/ruffle",
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/ruffle-rs/ruffle.git"
15+
},
1316
"main": "ruffle.js",
1417
}

web/packages/selfhosted/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@
1111
],
1212
"homepage": "https://ruffle.rs",
1313
"bugs": "https://github.com/ruffle-rs/ruffle/issues",
14-
"repository": "github:ruffle-rs/ruffle",
14+
"repository": {
15+
"type": "git",
16+
"url": "git+https://github.com/ruffle-rs/ruffle.git"
17+
},
1518
"scripts": {
1619
"build": "webpack",
1720
"serve": "webpack-dev-server",

0 commit comments

Comments
 (0)