mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 14:20:33 -04:00
- Add a temporary patch to fix the following error: /usr/local/share/csso/lib/csso.js:69 print(fs.readFileSync(__dirname.slice(0, __dirname.lastIndexOf('/')) + '/' + filename).toString()); ^ TypeError: print is not a function at printFile (/usr/local/share/csso/lib/csso.js:69:5) at Object.<anonymous> (/usr/local/share/csso/lib/csso.js:28:5) at Module._compile (internal/modules/cjs/loader.js:1236:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:1257:10) at Module.load (internal/modules/cjs/loader.js:1085:32) at Function.Module._load (internal/modules/cjs/loader.js:950:14) at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:60:12) at internal/main/run_main_module.js:17:47 This happens because the function util.print() has been removed by recent versions of node. - Install the file VERSION (required when using --version switch) - Reorder variables in Makefile - Bump PORTREVISION (pkg-plist changed) PR: 268010 Reported by: Chris Hutchinson <portmaster@bsdforge.com>
12 lines
295 B
JavaScript
12 lines
295 B
JavaScript
--- lib/csso.js.orig 2013-10-15 12:47:12 UTC
|
|
+++ lib/csso.js
|
|
@@ -1,7 +1,8 @@
|
|
var fs = require('fs'),
|
|
- print = require('util').print,
|
|
csso = require('./cssoapi.js'),
|
|
src, x;
|
|
+
|
|
+var print = console.log;
|
|
|
|
var args = process.argv.slice(2),
|
|
opts = args.length ? getOpts(args, [
|