Skip to content

Commit

Permalink
fix: core package publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
beeman committed Dec 3, 2023
1 parent 0744c24 commit 9287a7e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
15 changes: 14 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
{
"name": "@pubkey-ui/core",
"version": "0.0.1"
"version": "0.0.1",
"dependencies": {
"@mantine/core": "^7.2.2",
"@mantine/dates": "^7.2.2",
"@mantine/form": "^7.2.2",
"@mantine/hooks": "^7.2.2",
"@mantine/modals": "^7.2.2",
"@mantine/notifications": "^7.2.2",
"timeago-react": "^3.0.6"
},
"typings": "./index.esm.d.ts",
"module": "./index.esm.js",
"type": "module",
"main": "./index.esm.js"
}
9 changes: 9 additions & 0 deletions packages/core/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,19 @@
"glob": "packages/core/README.md",
"input": ".",
"output": "."
},
{
"input": "./packages/core/src",
"glob": "**/(*.css)",
"output": "./src"
}
]
}
},
"publish": {
"command": "node tools/scripts/publish.mjs core {args.ver} {args.tag}",
"dependsOn": ["build"]
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
Expand Down

0 comments on commit 9287a7e

Please sign in to comment.