Dem Pilafian

Results 13 issues of Dem Pilafian

### New Feature For extra convenience (and to reduce the clutter of yet another project configuration file), add support for storing the `esbuild` configuration directly in the project's **package.json** file....

enhancement

Upgrade to modern ES6 function definitions for the `dna.array` functions defined in the **dna.js** file. The newer notation is more compact and looks better. For example, change: ```javascript find: (array,...

good first issue
help wanted

Configure the project to enforce the JSHint rule that prohibits non-breaking whitespace characters. See `"jshintConfig"` in **package.json**: https://github.com/center-key/pretty-print-json/blob/master/package.json#L21 JSHint documentation: https://jshint.com/docs/options/#nonbsp

help wanted
good first issue

https://json5.org/

enhancement

Configure the project to enforce the JSHint rule that prohibits non-breaking whitespace characters. See `"jshintConfig"` in **package.json**: https://github.com/center-key/clabe-validator/blob/master/package.json#L24 JSHint documentation: https://jshint.com/docs/options/#nonbsp

help wanted
good first issue

It would be great to replace: "node-slate": "sdelements/node-slate" with: "node-slate": "~1.3" in the **package.json** file for the gulp plugin: https://github.com/center-key/gulp-node-slate/blob/master/package.json#L36 See: https://www.npmjs.com/search?q=node-slate

Missing image icon shows with `alt` text of: > Screenshot of Example Documentation created with Slate

It would be convenient to turn on or off logging (especially for debugging) with something like: ```js fetchJson.enableLogger(); fetchJson.get(url).then(handleData); //call is logged fetchJson.get(url, { log: false }).then(handleData); //call is NOT...

enhancement