UNPKG
sugo-constants
Version:
latest (2.4.2)
2.4.2
2.4.1
2.3.3
2.3.2
2.3.1
2.2.1
2.1.1
2.0.2
Constant variables for SUGOS
github.com/realglobe-Inc/sugo-constants
realglobe-inc/sugo-constants
sugo-constants
/
ci
/
update.js
17 lines
(11 loc)
•
258 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env node
/** * Update project. */
'use strict'
process.
chdir
(
`
${__dirname}
/..`
)
const
{ runTasks } =
require
(
'ape-tasking'
)
const
{ updateDependencies } =
require
(
'ape-updating'
)
runTasks
(
'update'
, [
() =>
updateDependencies
({}) ],
true
)