chore: update feed dependency to version 5.1.0 and adjust import paths for consistency
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
export * from './smartfeed.classes.smartfeed';
|
||||
export * from './smartfeed.classes.feed';
|
||||
export * from './smartfeed.classes.smartfeed.js';
|
||||
export * from './smartfeed.classes.feed.js';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import * as plugins from './smartfeed.plugins';
|
||||
import * as plugins from './smartfeed.plugins.js';
|
||||
|
||||
export interface IFeedOptions {
|
||||
domain: string;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { Feed, IFeedOptions } from './smartfeed.classes.feed';
|
||||
import * as plugins from './smartfeed.plugins';
|
||||
import { Feed } from './smartfeed.classes.feed.js';
|
||||
import type { IFeedOptions } from './smartfeed.classes.feed.js';
|
||||
import * as plugins from './smartfeed.plugins.js';
|
||||
|
||||
export class Smartfeed {
|
||||
public createFeed(optionsArg: IFeedOptions) {
|
||||
|
||||
Reference in New Issue
Block a user