cal.pub0.org/packages/embeds/embed-react/test/packaged
Hariom Balhara 2a8eca7885
chore: Update version in main for embeds that are already released. (#9822)
* Release latest embeds

* Release latest embeds

* Ensure that unpublished packages arent imported

* linter is important to catch unexpected imports

* Create new release

* Add a new patch
2023-07-21 16:46:18 +05:30
..
README.md chore: Sync packages mismatches (#9725) 2023-06-22 15:25:37 -07:00
api.test.ts chore: Update version in main for embeds that are already released. (#9822) 2023-07-21 16:46:18 +05:30
tsconfig.json Fixup tsconfig.json in packaged embed-react (#9330) 2023-06-05 09:57:53 +00:00

README.md

Packaged

The tests in this file are run on the packaged code that is published to npm. The packaged code is different from the source code in atleast the following ways

  • Not all files go to packaged code.If package.json -> files field is specified then only the files that are specified there would be published. So, one might accidentally miss an important file that's available otherwise.
  • The packaged code doesn't have .ts files. Those files are actually converted to .js files and .d.ts files are generated separately for TypeScript support. It allows the package to work in both TypeScript and non TypeScript environments.