oops on publish ci
This commit is contained in:
parent
47f37b2c81
commit
714b9cbf77
|
@ -29,7 +29,7 @@ jobs:
|
||||||
yarn install-r
|
yarn install-r
|
||||||
yarn build-library
|
yarn build-library
|
||||||
yarn test --silent
|
yarn test --silent
|
||||||
cd lib
|
cd src/lib
|
||||||
npm publish
|
npm publish
|
||||||
cd ../components
|
cd ../components
|
||||||
npm publish
|
npm publish
|
|
@ -12,8 +12,12 @@ This library is **published as two libraries**:
|
||||||
|
|
||||||
- @lingdocs/inflect
|
- @lingdocs/inflect
|
||||||
- The core inflection engine with grammatical information and tools for processing LingDocs dictionary entries and Pashto text.
|
- The core inflection engine with grammatical information and tools for processing LingDocs dictionary entries and Pashto text.
|
||||||
|
- Can be used with Node 16, as CommonJS
|
||||||
- @lingdocs/ps-react
|
- @lingdocs/ps-react
|
||||||
- @lingdocs/inflect plus react components for displaying Pashto text, phrase engine UI etc.
|
- @lingdocs/inflect plus react components for displaying Pashto text, phrase engine UI etc.
|
||||||
|
- Only available as an ES6 Module
|
||||||
|
|
||||||
|
`@lingdocs/pashto-inflector`
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "pashto-inflector",
|
"name": "pashto-inflector",
|
||||||
"version": "5.0.0",
|
"version": "5.0.1",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "pashto-inflector",
|
"name": "pashto-inflector",
|
||||||
"version": "5.0.0",
|
"version": "5.0.1",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "pashto-inflector",
|
"name": "pashto-inflector",
|
||||||
"version": "5.0.0",
|
"version": "5.0.1",
|
||||||
"author": "lingdocs.com",
|
"author": "lingdocs.com",
|
||||||
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
|
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
|
||||||
"homepage": "https://verbs.lingdocs.com",
|
"homepage": "https://verbs.lingdocs.com",
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
# @lingdocs/inflect
|
# @lingdocs/inflect
|
||||||
|
|
||||||
The core inflection engine with grammatical information and tools for processing LingDocs dictionary entries and Pashto text.
|
The core inflection engine with grammatical information and tools for processing LingDocs dictionary entries and Pashto text.
|
||||||
|
|
||||||
|
### Peer depencies required
|
||||||
|
|
||||||
|
```
|
||||||
|
"react": "^17.0.1",
|
||||||
|
"react-bootstrap": "^1.5.1",
|
||||||
|
"react-dom": "^17.0.1"
|
||||||
|
```
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lingdocs/ps-react",
|
"name": "@lingdocs/ps-react",
|
||||||
"version": "5.0.0",
|
"version": "5.0.1",
|
||||||
"description": "Pashto inflector library module with React components",
|
"description": "Pashto inflector library module with React components",
|
||||||
"main": "dist/components/library.js",
|
"main": "dist/components/library.js",
|
||||||
"module": "dist/components/library.js",
|
"module": "dist/components/library.js",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lingdocs/inflect",
|
"name": "@lingdocs/inflect",
|
||||||
"version": "5.0.0",
|
"version": "5.0.1",
|
||||||
"description": "Pashto inflector library",
|
"description": "Pashto inflector library",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"types": "dist/lib/library.d.ts",
|
"types": "dist/lib/library.d.ts",
|
||||||
|
|
Loading…
Reference in New Issue