Skip to content
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
1 change: 1 addition & 0 deletions app/assets/javascript/lexxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -11674,3 +11674,4 @@ function highlightElement(preElement) {
}

export { highlightAll };
//# sourceMappingURL=lexxy.js.map
Binary file modified app/assets/javascript/lexxy.js.br
Binary file not shown.
Binary file modified app/assets/javascript/lexxy.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"scripts": {
"build": "rollup -c",
"build:npm": "rollup -c rollup.config.npm.mjs",
"watch": "NODE_ENV=development rollup -wc --watch.onEnd=\"rails restart\"",
"watch": "rollup -wc --watch.onEnd=\"rails restart\"",
"lint": "eslint",
"prerelease": "yarn build:npm",
"release": "yarn build:npm && yarn publish"
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default [
{
file: "./app/assets/javascript/lexxy.js",
format: "esm",
sourcemap: process.env.NODE_ENV === "development" // eslint-disable-line no-undef
sourcemap: true
},
{
file: "./app/assets/javascript/lexxy.min.js",
Expand Down