This commit is contained in:
Benjamin Toby
2025-01-16 08:16:27 +01:00
parent c358cc8f26
commit ab998dc531
5 changed files with 8 additions and 4 deletions
+1
View File
@@ -1,3 +1,4 @@
#!/usr/bin/env node
export type LessCssWatcherConfigObject = {
src?: string | string[];
dst?: string | string[];
+1
View File
@@ -1,3 +1,4 @@
#!/usr/bin/env node
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
+1 -1
View File
File diff suppressed because one or more lines are too long
+3 -3
View File
@@ -1,11 +1,11 @@
{
"name": "@moduletrace/less-watcher",
"version": "1.0.2",
"version": "1.0.3",
"description": "A minimal package to watch less files and compile them to css",
"main": "dist/index.js",
"bin": {
"lessc-watcher": "run.sh",
"less-watcher": "run.sh"
"lessc-watcher": "dist/index.js",
"less-watcher": "dist/index.js"
},
"repository": {
"type": "git",
+2
View File
@@ -1,3 +1,5 @@
#!/usr/bin/env node
import fs from "fs";
import { exec } from "child_process";