UNPKG
ion-datepicker-2
Version:
latest (2.8.2)
2.8.2
A date picker for ionic
github.com/misha130/ion-datepicker
misha130/ion-datepicker
ion-datepicker-2
/
scripts
/
copy-package.js
11 lines
(7 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
var
fs =
require
(
'fs'
);
var
packageJson =
require
(
'../package.json'
);
if
(! packageJson) {
throw
new
Error
(
'Can\'t find package json'
); }
delete
packageJson.
devDependencies
; fs.
writeFile
(
'./dist/package.json'
,
JSON
.
stringify
(packageJson,
null
,
2
));