mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
14 lines
379 B
Plaintext
14 lines
379 B
Plaintext
|
#!/usr/bin/env node
|
||
|
|
||
|
'use strict'
|
||
|
|
||
|
const cleanCaches = require('./lib/clean-caches')
|
||
|
const cleanDependencies = require('./lib/clean-dependencies')
|
||
|
const cleanOutputDirectory = require('./lib/clean-output-directory')
|
||
|
const killRunningAtomInstances = require('./lib/kill-running-atom-instances')
|
||
|
|
||
|
killRunningAtomInstances()
|
||
|
cleanDependencies()
|
||
|
cleanCaches()
|
||
|
cleanOutputDirectory()
|