@gobstones/gobstones-scripts
Version:
Scripts to abstract away build configuration of Gobstones Project's libraries and modules.
22 lines • 726 B
TypeScript
/**
* @module Config
* @author Alan Rodas Bonjour <alanrodas@gmail.com>
*/
/**
* The tool's version number
*
* This needs to be here in order to avoid reading the package.json, which
* is not reliable between different implementations of package managers
* and that may lead to false readings.
*/
export declare const version = "0.9.3";
/**
* The tool's test server address.
*
* This line is added to the .npmrc file of projects
* when they are created in test mode. It can also be used
* in any project that attempts to use the version from
* the verdaccio server instead of the regular one.
*/
export declare const testServer = "@gobstones:registry=http://localhost:4567";
//# sourceMappingURL=about.d.ts.map