firstly 0.1.0 → 0.1.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # firstly
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`847af7a`](https://github.com/jycouet/firstly/commit/847af7a6d33224884032c80f63cb489106e6d40a)
8
+ Thanks [@jycouet](https://github.com/jycouet)! - export mail & cron roles from client bundle
9
+
3
10
  ## 0.1.0
4
11
 
5
12
  ### Minor Changes
@@ -1,3 +1,4 @@
1
1
  import { Log } from '@kitql/helpers';
2
+ export { Roles_Cron } from './Roles_Cron';
2
3
  export declare const key = "cron";
3
4
  export declare const log: Log;
package/esm/cron/index.js CHANGED
@@ -1,3 +1,4 @@
1
1
  import { Log } from '@kitql/helpers';
2
+ export { Roles_Cron } from './Roles_Cron';
2
3
  export const key = 'cron';
3
4
  export const log = new Log(key);
@@ -1,5 +1,6 @@
1
1
  import { Log } from '@kitql/helpers';
2
2
  import { Mail } from './Mail';
3
+ export { Roles_Mail } from './Roles_Mail';
3
4
  export declare const key = "mail";
4
5
  export declare const log: Log;
5
6
  export declare const mailEntities: {
package/esm/mail/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import { Log } from '@kitql/helpers';
2
2
  import { Mail } from './Mail';
3
+ export { Roles_Mail } from './Roles_Mail';
3
4
  export const key = 'mail';
4
5
  export const log = new Log(key);
5
6
  export const mailEntities = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firstly",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "Firstly, an opinionated Remult setup!",
6
6
  "funding": "https://github.com/sponsors/jycouet",