Skip to content

Commit 24bf747

Browse files
committed
Fixed some package.json issues
1 parent 430222c commit 24bf747

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

_build/Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ class Build : NukeBuild
268268
.DependsOn(Release)
269269
.Executes(() => {
270270
var tag = gitRepository.IsOnMainOrMasterBranch() ? "latest" : "next";
271-
Npm($"publish --access public --tag {tag} --workspaces");
271+
Npm($"publish --access public --tag {tag} --workspaces --provenance");
272272
});
273273

274274
Target PublishSite => _ => _

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@
1313
"@types/node": "^25.0.10",
1414
"lerna": "^9.0.3",
1515
"typescript": "^5.0.3"
16-
}
16+
},
17+
"version": ""
1718
}

packages/stencil-library/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
"name": "@dnncommunity/dnn-elements",
33
"version": "0.28.0-beta.2",
44
"description": "Dnn themed custom elements.",
5-
"repository": "https://github.com/dnncommunity/dnn-elements",
5+
"repository": {
6+
"type": "git",
7+
"url": "git+https://github.com/dnncommunity/dnn-elements.git"
8+
},
69
"homepage": "https://dnncommunity.github.io/dnn-elements",
710
"license": "MIT",
811
"main": "dist/index.cjs.js",

0 commit comments

Comments
 (0)