1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
use std::{
io,
path::{Path, PathBuf},
process::{Command, Stdio},
};
use super::resource_dir::ResourceDir;
#[cfg(not(windows))]
const NPM_CMD: &str = "npm";
#[cfg(windows)]
const NPM_CMD: &str = "npm.cmd";
pub fn npm_resource_dir<P: AsRef<Path>>(resource_dir: P) -> io::Result<ResourceDir> {
Ok(NpmBuild::new(resource_dir).install()?.to_resource_dir())
}
#[derive(Default, Debug)]
pub struct NpmBuild {
package_json_dir: PathBuf,
executable: String,
target_dir: Option<PathBuf>,
}
impl NpmBuild {
pub fn new<P: AsRef<Path>>(package_json_dir: P) -> Self {
Self {
package_json_dir: package_json_dir.as_ref().into(),
executable: String::from(NPM_CMD),
..Default::default()
}
}
pub fn executable(self, executable: &str) -> Self {
let executable = String::from(executable);
Self { executable, ..self }
}
#[cfg(feature = "change-detection")]
pub fn change_detection(self) -> Self {
use ::change_detection::{
path_matchers::{any, equal, func, starts_with, PathMatcherExt},
ChangeDetection,
};
let package_json_dir = self.package_json_dir.clone();
let default_exclude_filter = any!(
equal(package_json_dir.clone()),
starts_with(self.package_json_dir.join("node_modules")),
equal(self.package_json_dir.join("package.json")),
equal(self.package_json_dir.join("package-lock.json")),
func(move |p| { p.is_file() && p.parent() != Some(package_json_dir.as_path()) })
);
{
let change_detection = if self.target_dir.is_none() {
ChangeDetection::exclude(default_exclude_filter)
} else {
let mut target_dir = self.target_dir.clone().unwrap();
if let Some(target_dir_parent) = target_dir.parent() {
if target_dir_parent.starts_with(&self.package_json_dir) {
while target_dir.parent() != Some(&self.package_json_dir) {
target_dir = target_dir.parent().unwrap().into();
}
}
}
let exclude_filter = default_exclude_filter.or(starts_with(target_dir));
ChangeDetection::exclude(exclude_filter)
};
change_detection.path(&self.package_json_dir).generate();
}
self
}
pub fn install(self) -> io::Result<Self> {
if let Err(e) = self
.command()
.stderr(Stdio::null())
.stdout(Stdio::null())
.arg("install")
.current_dir(&self.package_json_dir)
.status()
{
eprintln!("Cannot execute {} install: {:?}", &self.executable, e);
return Err(e);
}
Ok(self)
}
pub fn run(self, cmd: &str) -> io::Result<Self> {
if let Err(e) = self
.command()
.stderr(Stdio::null())
.stdout(Stdio::null())
.arg("run")
.arg(cmd)
.current_dir(&self.package_json_dir)
.status()
{
eprintln!("Cannot execute {} run {}: {:?}", &self.executable, cmd, e);
return Err(e);
}
Ok(self)
}
pub fn target<P: AsRef<Path>>(mut self, target_dir: P) -> Self {
self.target_dir = Some(target_dir.as_ref().into());
self
}
pub fn to_resource_dir(self) -> ResourceDir {
self.into()
}
#[cfg(not(windows))]
fn command(&self) -> Command {
Command::new(&self.executable)
}
#[cfg(windows)]
fn command(&self) -> Command {
let mut cmd = Command::new("cmd");
cmd.arg("/c").arg(&self.executable);
cmd
}
}
impl From<NpmBuild> for ResourceDir {
fn from(mut npm_build: NpmBuild) -> Self {
Self {
resource_dir: npm_build
.target_dir
.take()
.unwrap_or_else(|| npm_build.package_json_dir.join("node_modules")),
..Default::default()
}
}
}