Skip to content

Commit

Permalink
publish v0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
rsek committed Mar 20, 2024
1 parent a278011 commit 6fc9567
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Datasworn v0.0.7
# Datasworn v0.0.8

[![@datasworn/core on npm](https://img.shields.io/npm/v/@datasworn/core?logo=npm)](https://www.npmjs.com/package/@datasworn/core)
[![@datasworn/core on npm](https://img.shields.io/npm/dm/@datasworn/core?logo=npm)](https://www.npmjs.com/package/@datasworn/core)
Expand Down
2 changes: 1 addition & 1 deletion pkg/nodejs/@datasworn/core/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Datasworn v0.0.7
# Datasworn v0.0.8

Traversal utilities, JSON schema, and Typescript declarations common to Datasworn packages.

Expand Down
2 changes: 1 addition & 1 deletion pkg/nodejs/@datasworn/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@datasworn/core",
"version": "0.0.7",
"version": "0.0.8",
"description": "Typings and JSON schema common to Datasworn. This is a pre-release package, provided for developer feedback. It will almost certainly receive breaking changes.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions pkg/nodejs/@datasworn/ironsworn-classic-delve/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"url": "https://github.com/rsek/datasworn/issues"
},
"dependencies": {
"@datasworn/core": "0.0.7",
"@datasworn/ironsworn-classic": "0.0.7"
"@datasworn/core": "0.0.8",
"@datasworn/ironsworn-classic": "0.0.8"
},
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion pkg/nodejs/@datasworn/ironsworn-classic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"url": "https://github.com/rsek/datasworn/issues"
},
"dependencies": {
"@datasworn/core": "0.0.7"
"@datasworn/core": "0.0.8"
},
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion pkg/nodejs/@datasworn/starforged/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"url": "https://github.com/rsek/datasworn/issues"
},
"dependencies": {
"@datasworn/core": "0.0.7"
"@datasworn/core": "0.0.8"
},
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/pkg/nodejs/publishPackages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { exec } from 'child_process'
import Log from '../../utils/Log.js'
import { updatePackageVersions } from './updatePackageVersions.js'

function publishCommand(dir: string, tag: string = 'latest', dryRun = true) {
function publishCommand(dir: string, tag: string = 'latest', dryRun = false) {
let cmd = `npm publish "${dir}" --tag ${tag}`
cmd += dryRun ? ' --dry-run' : ' --otp $OTP'
// console.log(cmd)
Expand Down

0 comments on commit 6fc9567

Please sign in to comment.