@solidstarters/solid-core 1.2.0 → 1.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidstarters/solid-core",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "This module is a NestJS module containing all the required core providers required by a Solid application",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -235,7 +235,7 @@ export class ModuleMetadataSeederService {
235
235
  // const emailTemplateFilePath = path.join(process.cwd(), emailTemplate.body);
236
236
 
237
237
  // emailTemplate.body = fs.readFileSync(emailTemplateFilePath, 'utf-8').toString()
238
- const modulePath = path.dirname(require.resolve('@solidstarters/solid-core-module'));
238
+ const modulePath = path.dirname(require.resolve('@solidstarters/solid-core'));
239
239
 
240
240
  // Resolve the `src` folder
241
241
  const seedDataPath = path.join(modulePath, '../src/seeders/seed-data/email-templates');
@@ -267,7 +267,7 @@ export class ModuleMetadataSeederService {
267
267
  // const smsTemplateFilePath = path.join(process.cwd(), smsTemplate.body);
268
268
  // smsTemplate.body = fs.readFileSync(smsTemplateFilePath, 'utf-8').toString()
269
269
 
270
- const modulePath = path.dirname(require.resolve('@solidstarters/solid-core-module'));
270
+ const modulePath = path.dirname(require.resolve('@solidstarters/solid-core'));
271
271
 
272
272
  // Resolve the `src` folder
273
273
  const seedDataPath = path.join(modulePath, '../src/seeders/seed-data/sms-templates');