@news-factory/nf-types
v1.10.19
Published
types for the varius projects of the company
Keywords
Readme
News Factory Types Package
Hi, this package ment to hold all of news factory types for the ts projects.
here i will share the steps to update the package in case you you want to add new features
after you finished adding new features to the package you should run the following commands in the cli:
- npm run bild
- git add .
- git commit -m "changed to version x.x.x Changes:..."(describe the changes shortly so it will be clear what they are)
- then run one of the following:
- git push --tags
- npm publish --access=restricted
and thats it!
IMPORTANT NOTE!
when you install this package, you need to add the following to the tsconfig file of the project you want to add this package to: { "compilerOptions":{ ... "baseUrl": "." /_ Specify the base directory to resolve non-relative module names. _/, "paths": { "@news-factory/nf-types": ["node_modules/@news-factory/nf-types"] }, ... }, "include": ["src//*", "node_modules/@news-factory/nf-types//*"] }
