@jlandis1/guessphrase-shared 1.0.7 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -4,5 +4,5 @@ Contains types and Zod schemas used in both frontend and backend applications.
4
4
 
5
5
  ### Workflow when updating package:
6
6
  - Increment version number in **package.json** by running ```npm version patch```
7
- - Push changes to Github. Github Actions will automatically publish the package
7
+ - Push changes to Github - Github Actions will automatically publish the package
8
8
  - Install the latest version of the package in other repositories by running ```npm install @jlandis1/guessphrase-shared@latest```
package/dist/index.d.ts CHANGED
@@ -1,3 +1,5 @@
1
1
  import { ZodTypeAny } from 'zod';
2
- export { registerSchema, TRegisterSchema, loginSchema, TLoginSchema } from './src/auth';
2
+ import { TRegisterSchema, TLoginSchema } from './src/auth.js';
3
+ export { registerSchema, loginSchema } from './src/auth.js';
3
4
  export type { ZodTypeAny };
5
+ export type { TRegisterSchema, TLoginSchema };
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- export { registerSchema, loginSchema } from './src/auth';
1
+ export { registerSchema, loginSchema } from './src/auth.js';
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@jlandis1/guessphrase-shared",
3
- "version": "1.0.7",
4
- "description": "Shared library between Frontend and Backend for GuessPhrase",
3
+ "version": "1.0.9",
5
4
  "type": "module",
5
+ "description": "Shared library between Frontend and Backend for GuessPhrase",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "files": [