Install OpenSSH Client optional feature
Add %SYSTEMROOT%\System32\OpenSSH\ to PATH
Install OpenSSH Client optional feature
Add %SYSTEMROOT%\System32\OpenSSH\ to PATH
const AssetGraph = require('assetgraph'); // library to build dependency tree | |
const hashFiles = require('assetgraph-hashfiles'); // library to add hash | |
const del = require('del'); | |
// top level await calls need to be inside | |
// an async function call | |
(async () => { | |
// remove old version of dist folder so | |
// we start from a clean slate and no old |
Some notes on the process of making this change to an application.
In addition to this other changes that have been included are:
I hereby claim:
To claim this, I am signing this object:
function Person(name) { | |
this.name = name; | |
} | |
Person.prototype.greet = function() { | |
console.log("Hello, my name is" + this.name); | |
} | |
// as of 2015... |
---------------------------------------------------------------------------- | |
FUNCTION fw_xml_add_child(p_parent IN XMLTYPE, p_child IN XMLTYPE) | |
---------------------------------------------------------------------------- | |
RETURN XMLTYPE | |
AS | |
l_parent_dom DBMS_XMLDOM.DOMDocument; | |
l_parent_elem DBMS_XMLDOM.DOMElement; | |
l_child_dom DBMS_XMLDOM.DOMDocument; | |
l_child_elem DBMS_XMLDOM.DOMElement; |
'use strict'; | |
// Dependencies | |
// we can remove a dependency by using the vision | |
// package directly | |
const vision = require('@google-cloud/vision')({ | |
projectId: 'sara-bigquery', | |
keyfileName: 'keyfile.json' | |
}); | |
const fs = require('fs'); |