@newlogic-digital/core 2.0.0-beta.2 → 2.0.0-beta.3

Sign up to get free protection for your applications and to get access to all the features.
package/index.js CHANGED
@@ -62,11 +62,7 @@ const defaultOptions = {
62
62
  paths: ['src/views/email']
63
63
  },
64
64
  tailwindcss: {},
65
- send: {
66
- host: 'smtp.newlogic.cz',
67
- from: 'noreply@newlogic.cz',
68
- user: 'noreply@newlogic.cz'
69
- },
65
+ send: {},
70
66
  latte: {
71
67
  renderTransformedHtml: (filename) => dirname(filename).endsWith('email'),
72
68
  globals: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@newlogic-digital/core",
3
3
  "type": "module",
4
- "version": "2.0.0-beta.2",
4
+ "version": "2.0.0-beta.3",
5
5
  "main": "index.js",
6
6
  "author": "New Logic Studio s.r.o.",
7
7
  "description": "Set of tools that can be used to create modern web applications",
package/types/index.d.ts CHANGED
@@ -4,7 +4,7 @@ interface Emails {
4
4
  }
5
5
 
6
6
  export interface PluginUserConfig {
7
- mode?: string
7
+ mode?: 'development' | 'production' | 'emails'
8
8
  format?: string[]
9
9
  cert?: string
10
10
  emails?: Emails