Skip to content

Commit

Permalink
chore(ui): update wrappers comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoenescu committed Nov 7, 2024
1 parent 55ac743 commit 9413120
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 26 deletions.
29 changes: 16 additions & 13 deletions ui/wrappers/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,6 @@ module.exports.store = function (callback) {
return callback
}

module.exports.bexBackground = function (callback) {
return callback
}

module.exports.bexContent = function (callback) {
return callback
}

// legacy q/app-vite v1 & q/app-webpack v3
module.exports.bexDom = function (callback) {
return callback
}

/**
* Below only for @quasar/app-webpack v3
*/
Expand Down Expand Up @@ -74,3 +61,19 @@ module.exports.ssrServeStaticContent = function (callback) {
module.exports.ssrRenderPreloadTag = function (callback) {
return callback
}

/**
* Below only for legacy @quasar/app-vite v1 & @quasar/app-webpack v3
*/

module.exports.bexBackground = function (callback) {
return callback
}

module.exports.bexContent = function (callback) {
return callback
}

module.exports.bexDom = function (callback) {
return callback
}
29 changes: 16 additions & 13 deletions ui/wrappers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,6 @@ export function ssrMiddleware (callback) {
return callback
}

export function bexBackground (callback) {
return callback
}

export function bexContent (callback) {
return callback
}

// Below only for @quasar/app-vite v1 & @quasar/app-webpack v3
export function bexDom (callback) {
return callback
}

/**
* Below only for @quasar/app-webpack v3
*/
Expand Down Expand Up @@ -74,3 +61,19 @@ export function ssrServeStaticContent (callback) {
export function ssrRenderPreloadTag (callback) {
return callback
}

/**
* Below only for legacy @quasar/app-vite v1 & @quasar/app-webpack v3
*/

export function bexBackground (callback) {
return callback
}

export function bexContent (callback) {
return callback
}

export function bexDom (callback) {
return callback
}

0 comments on commit 9413120

Please sign in to comment.