8000 Imported function PATHS.strip_slash() missing by 0xMurage · Pull Request #770 · twigjs/twig.js · GitHub
[go: up one dir, main page]

Skip to content

Imported function PATHS.strip_slash() missing #770

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

Merged
merged 1 commit into from
Sep 21, 2021
Merged
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
Imported function PATHS.strip_slash() missing
Exported function `strip_slash()` renamed to `stripSlash()` causing twigjs compilation command fail.
  • Loading branch information
murage authored Jan 13, 2021
commit 656c21a5fce6e588ef1e0ff3d0f63c22a002eb04
2 changes: 1 addition & 1 deletion bin/twigjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ while (args.length > 0) {
return;
case "--output":
case "-o":
options.output = PATHS.strip_slash(args.shift());
options.output = PATHS.stripSlash(args.shift());
break;
case "--pattern":
case "-p":
Expand Down
0