Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove comments when bundling #334

Merged
merged 1 commit into from
Aug 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion .github/actions/bundle/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4501,6 +4501,7 @@ const fs_1 = __importDefault(__nccwpck_require__(7147));
const path_1 = __importDefault(__nccwpck_require__(1017));
const helpers_1 = __nccwpck_require__(8092);
const lua_require_1 = __nccwpck_require__(9083);
const remove_comments_1 = __nccwpck_require__(6236);
const wrap_import_1 = __nccwpck_require__(3494);
exports.files = {};
const importFileBase = (name, importedFiles, fetcher) => {
Expand Down Expand Up @@ -4551,7 +4552,7 @@ const bundleFileBase = (name, importedFiles, mixins, fetcher) => {
};
exports.bundleFileBase = bundleFileBase;
const bundleFile = (name, sourcePath, mixins) => {
return (0, exports.bundleFileBase)(name, exports.files, mixins, (fileName) => fs_1.default.readFileSync(path_1.default.join(sourcePath, fileName)).toString());
return (0, remove_comments_1.removeComments)((0, exports.bundleFileBase)(name, exports.files, mixins, (fileName) => fs_1.default.readFileSync(path_1.default.join(sourcePath, fileName)).toString()));
};
exports.bundleFile = bundleFile;

Expand Down Expand Up @@ -4676,6 +4677,25 @@ const resolveRequiredFile = (name) => {
exports.resolveRequiredFile = resolveRequiredFile;


/***/ }),

/***/ 6236:
/***/ ((__unused_webpack_module, exports) => {

"use strict";

Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.removeComments = void 0;
const removeComments = (contents) => {
return contents
.replace(/--\[\[[^\]]*\]\]/giu, '')
.replace(/--.*$/gimu, '')
.replace(/\n\n+/gimu, '\n')
.replace(/ *$/gimu, '');
};
exports.removeComments = removeComments;


/***/ }),

/***/ 3494:
Expand Down
7 changes: 5 additions & 2 deletions .github/actions/bundle/src/bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import fs from 'fs'
import path from 'path'
import { getAllImports } from './helpers'
import { generateLuaRequire, resolveRequiredFile } from './lua-require'
import { removeComments } from './remove-comments'
import { wrapImport } from './wrap-import'

export type ImportedFile = {
Expand Down Expand Up @@ -62,7 +63,9 @@ export const bundleFileBase = (
}

export const bundleFile = (name: string, sourcePath: string, mixins: string[]): string => {
return bundleFileBase(name, files, mixins, (fileName: string) =>
fs.readFileSync(path.join(sourcePath, fileName)).toString()
return removeComments(
bundleFileBase(name, files, mixins, (fileName: string) =>
fs.readFileSync(path.join(sourcePath, fileName)).toString()
)
)
}
56 changes: 56 additions & 0 deletions .github/actions/bundle/src/remove-comments.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
import { removeComments } from './remove-comments'

const tests: [string, string][] = [
[`--[[]]`, ``],
[`--[[hello world]]`, ``],
[`--[[[[]]]]`, `]]`],
[`--[[--[[]]]]`, `]]`],
[`--[[]]--`, ``],
[`--[[]]--\nhello world`, `\nhello world`],
[`\n\n`, `\n`],
[`\n\n\n`, `\n`],
[`\n\n\n\n`, `\n`],
[`\n\n\n\n\n`, `\n`],
[`--[[\nhello\nworld\n]]`, ``],
[`--[[\n--hello\nworld\n]]`, ``],
[`hello world --[[\n--hello\nworld\n]]`, `hello world`],
[`hello world -- this is a comment`, `hello world`],
[` -- this is a comment\nhello world`, `\nhello world`],
[
`finaleplugin.AdditionalMenuOptions = [[ CrossStaff Offset No Dialog ]] `,
`finaleplugin.AdditionalMenuOptions = [[ CrossStaff Offset No Dialog ]]`,
],
[
`finaleplugin.AdditionalMenuOptions = [[\n CrossStaff Offset No Dialog\n]]`,
`finaleplugin.AdditionalMenuOptions = [[\n CrossStaff Offset No Dialog\n]]`,
],
[
`
__imports["library.client"] = function()
--[[
$module Client
Get information about the current client. For the purposes of Finale Lua, the client is
the Finale application that's running on someones machine. Therefore, the client has
details about the user's setup, such as their Finale version, plugin version, and
operating system.
One of the main uses of using client details is to check its capabilities. As such,
the bulk of this library is helper functions to determine what the client supports.
]] --
local client = {}

local function to_human_string(feature)
return string.gsub(feature, "_", " ")
end`,
`
__imports["library.client"] = function()

local client = {}
local function to_human_string(feature)
return string.gsub(feature, "_", " ")
end`,
],
]

it.each(tests)(`removeComments(%p)`, (input, expected) => {
expect(removeComments(input)).toBe(expected)
})
7 changes: 7 additions & 0 deletions .github/actions/bundle/src/remove-comments.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export const removeComments = (contents: string): string => {
return contents
.replace(/--\[\[[^\]]*\]\]/giu, '')
.replace(/--.*$/gimu, '')
.replace(/\n\n+/gimu, '\n')
.replace(/ *$/gimu, '')
}