Skip to content

Commit

Permalink
ref: reorder header
Browse files Browse the repository at this point in the history
  • Loading branch information
Sv443 committed Nov 20, 2024
1 parent c96c5b6 commit f47baa0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/tools/post-build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,7 @@ const devDirectives = mode === "development" ? `\
// @name ${pkg.userscriptName}
// @namespace ${pkg.homepage}
// @version ${pkg.version}
// @description ${pkg.description}\
${localizedDescriptions ? "\n" + localizedDescriptions : ""}\
// @description ${pkg.description}
// @homepageURL ${pkg.homepage}#readme
// @supportURL ${pkg.bugs.url}
// @license ${pkg.license}
Expand All @@ -97,21 +96,22 @@ ${localizedDescriptions ? "\n" + localizedDescriptions : ""}\
// @icon ${getResourceUrl(`images/logo/logo${mode === "development" ? "_dev" : ""}_48.png`, buildNbr)}
// @match https://music.youtube.com/*
// @match https://www.youtube.com/*
// @run-at document-start
// @run-at document-start\
${localizedDescriptions ? "\n" + localizedDescriptions : ""}\
// @connect api.sv443.net
// @connect github.com
// @connect raw.githubusercontent.com
// @connect youtube.com
// @connect returnyoutubedislikeapi.com
// @noframes
// @grant GM.getValue
// @grant GM.setValue
// @grant GM.deleteValue
// @grant GM.getResourceUrl
// @grant GM.setClipboard
// @grant GM.xmlHttpRequest
// @grant GM.openInTab
// @grant unsafeWindow
// @noframes\
// @grant unsafeWindow\
${resourcesDirectives ? "\n" + resourcesDirectives : ""}\
${requireDirectives ? "\n" + requireDirectives : ""}\
${devDirectives ? "\n" + devDirectives : ""}
Expand Down

0 comments on commit f47baa0

Please sign in to comment.