Skip to content

Commit

Permalink
exports
Browse files Browse the repository at this point in the history
  • Loading branch information
adueck committed Dec 6, 2024
1 parent f17ebdd commit 4597ea1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pashto-inflector-website",
"version": "7.7.3",
"version": "7.7.4",
"type": "module",
"scripts": {
"patch": "npm version patch --no-git-tag-version && cd src/lib && npm version patch --no-git-tag-version && cd ../components && npm version patch --no-git-tag-version",
Expand Down
8 changes: 7 additions & 1 deletion src/components/library.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import useStickyState from "./src/useStickyState";
import NPPicker from "./src/block-pickers/NPPicker";
import SandwichPicker from "./src/block-pickers/SandwichPicker";
import VerbFromDisplay from "./src/VerbFormDisplay";
import Block from "./src/blocks/Block";
import Block, { NPBlock, APBlock } from "./src/blocks/Block";
import VerbInfo, { RootsAndStems } from "./src/verb-info/VerbInfo";
import VPExplorer from "./src/vp-explorer/VPExplorer";
import EPExplorer from "./src/ep-explorer/EPExplorer";
Expand All @@ -25,7 +25,9 @@ import { makeVPSelectionState } from "../lib/src/phrase-building/verb-selection"

import APPicker from "./src/block-pickers/APPicker";
import VPDisplay from "./src/vp-explorer/VPDisplay";
import EPDisplay from "./src/ep-explorer/EPDisplay";
import VPPicker from "./src/vp-explorer/VPPicker";
import EPPicker from "./src/ep-explorer/EPPicker";
import NPDisplay from "./src/vp-explorer/NPDisplay";
import HumanReadableInflectionPattern from "./src/tables/HumanReadableInflectionPattern";
import { psJSXMap } from "./src/text-display/jsx-map";
Expand Down Expand Up @@ -58,6 +60,8 @@ export {

// blocks
Block,
NPBlock,
APBlock,

// misc
Hider,
Expand All @@ -73,7 +77,9 @@ export {
makeVPSelectionState,
RootsAndStems,
VPDisplay,
EPDisplay,
VPPicker,
EPPicker,
NPDisplay,
HumanReadableInflectionPattern,
psJSXMap,
Expand Down
2 changes: 1 addition & 1 deletion src/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lingdocs/ps-react",
"version": "7.7.3",
"version": "7.7.4",
"description": "Pashto inflector library module with React components",
"main": "dist/components/library.js",
"module": "dist/components/library.js",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lingdocs/inflect",
"version": "7.7.3",
"version": "7.7.4",
"description": "Pashto inflector library",
"main": "dist/lib/library.cjs",
"module": "dist/lib/library.js",
Expand Down

0 comments on commit 4597ea1

Please sign in to comment.