UNPKG
@mnpjs/package
Version:
latest (1.11.3)
1.11.3
1.11.2
1.11.1
1.11.0
1.10.0
1.9.0
1.8.0
1.7.5
1.7.4
1.7.3
1.7.2
1.7.1
1.7.0
1.6.0
1.5.0
1.4.3
1.4.2
A package structure for mnp.
github.com/mnpjs/package
mnpjs/package
@mnpjs/package
/
scripts
/
postpublish.js
8 lines
(6 loc)
•
194 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
{ resolve } =
require
(
'path'
)
const
{ unlink } =
require
(
'fs'
)
const
file =
resolve
(__dirname,
'../structure/_yarn.lock'
)
unlink
(file,
() =>
{
console
.
log
(
'removed file _yarn.lock'
) })