switch version.js to typescript
parent
8dbaf9534a
commit
ee58ab6c29
|
|
@ -8,7 +8,6 @@
|
||||||
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build:version": "npx genversion --es6 --semi version.js",
|
|
||||||
"start": "cross-env NODE_ENV=production node ./bin/www",
|
"start": "cross-env NODE_ENV=production node ./bin/www",
|
||||||
"dev:test": "cross-env NODE_ENV=dev DEBUG=lot-occupancy-system:* TEST_DATABASES=true nodemon ./bin/www.js",
|
"dev:test": "cross-env NODE_ENV=dev DEBUG=lot-occupancy-system:* TEST_DATABASES=true nodemon ./bin/www.js",
|
||||||
"dev:test:process": "cross-env NODE_ENV=dev DEBUG=lot-occupancy-system:* TEST_DATABASES=true nodemon ./bin/wwwProcess.js",
|
"dev:test:process": "cross-env NODE_ENV=dev DEBUG=lot-occupancy-system:* TEST_DATABASES=true nodemon ./bin/wwwProcess.js",
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
export declare const version = "1.0.0-alpha.10";
|
||||||
|
export default version;
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
// Generated by genversion.
|
|
||||||
export const version = '1.0.0-alpha.10';
|
export const version = '1.0.0-alpha.10';
|
||||||
|
export default version;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
export const version = '1.0.0-alpha.10'
|
||||||
|
|
||||||
|
export default version
|
||||||
Loading…
Reference in New Issue