Skip to content

Commit

Permalink
release(notification): v0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
surunzi committed Oct 9, 2023
1 parent 0127233 commit 0f82d4c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion index.json
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@
"dependencies": []
},
"notification": {
"version": "0.1.5",
"version": "0.1.6",
"style": true,
"icon": false,
"test": true,
Expand Down
6 changes: 4 additions & 2 deletions src/notification/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import uniqId from 'licia/uniqId'
import find from 'licia/find'
import h from 'licia/h'
import Component, { IComponentOptions } from '../share/Component'
import { exportCjs } from '../share/util'

/** IPosition */
export interface IPosition {
Expand Down Expand Up @@ -148,5 +149,6 @@ class NotificationItem {
}
}

module.exports = Notification
module.exports.default = Notification
if (typeof module !== 'undefined') {
exportCjs(module, Notification)
}
2 changes: 1 addition & 1 deletion src/notification/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "notification",
"version": "0.1.5",
"version": "0.1.6",
"description": "Show notifications"
}

0 comments on commit 0f82d4c

Please sign in to comment.