Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jaywcjlove/compile-less
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.8.6
Choose a base ref
...
head repository: jaywcjlove/compile-less
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.8.7
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Aug 31, 2021

  1. Copy the full SHA
    2731f78 View commit details
  2. released v1.8.7

    jaywcjlove committed Aug 31, 2021
    Copy the full SHA
    b6566d4 View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 package.json
  2. +1 −1 src/compile.ts
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "compile-less-cli",
"version": "1.8.6",
"version": "1.8.7",
"description": "All `.less` files are compiled into `.css` files.",
"main": "lib/compile.js",
"bin": {
2 changes: 1 addition & 1 deletion src/compile.ts
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ export default async function compile(dir: string, option: ICompileOtion) {
await fs.outputFile(outputCssFile, cssStr.join(''));
await log(outputCssFile);
} else {
console.log(`🚧'\x1b[35m${projectName}\x1b[0m =>\x1b[33m No content is output.\x1b[0m`);
console.log(`🚧 \x1b[35m${projectName}\x1b[0m =>\x1b[33m No content is output.\x1b[0m`);
}
} else {
const outputDir = path.join(process.cwd(), out);