diff options
author | Matthew Miller <matthew@millerti.me> | 2023-08-18 10:20:10 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-08-18 10:20:10 -0700 |
commit | b0ebdebbc2cb2a8f65a2a97112262c21f4a72a60 (patch) | |
tree | 90e89a35665ac3b62030b5370781ee0b387fcbc4 | |
parent | e75a2ac0ae28f8b963ffaccf0eb2ecad5cf981d5 (diff) |
Point lerna publish to dnt build directories
-rw-r--r-- | packages/server/package.json | 7 | ||||
-rw-r--r-- | packages/typescript-types/package.json | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/packages/server/package.json b/packages/server/package.json index ec9f442..97c2e19 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -8,5 +8,12 @@ "test": "deno test -A src/", "prepublish": "npm run build" }, + "lerna": { + "command": { + "publish": { + "directory": "./npm" + } + } + }, "gitHead": "ba039fdd5fdff87f78d3bd246e9bea5f7aa39ccb" } diff --git a/packages/typescript-types/package.json b/packages/typescript-types/package.json index 3540359..cfea69d 100644 --- a/packages/typescript-types/package.json +++ b/packages/typescript-types/package.json @@ -7,5 +7,12 @@ "extract-dom-types": "ts-node extract-dom-types.ts", "prepublish": "npm run build" }, + "lerna": { + "command": { + "publish": { + "directory": "./npm" + } + } + }, "gitHead": "33ccf8c6c9add811c87d3089e24156c2342b3498" } |