我想在运行public static String multOf(int x, int n){
int[] divisors = new int[n];
for (int i = 0; i < divisors.length; i++){
for (int j = 1; j < x + 1; j++){
if (j % x == 0)
divisors[i] = j;
}
}
return Arrays.toString(divisors);
}
时发出(而不构建)index.html
文件。我只想保留所选ng build
目录中的js
个文件。
有没有办法建立这个文件?在dist
中,我尝试删除了angular.json
属性,并尝试将其分配给index
,但还是没有运气(我收到一条错误消息,指出它是非法操作)。 / p>
答案 0 :(得分:0)
不确定要实现的目标,但是可以在package.json的scripts部分中创建一个脚本,并通过像这样运行它来对index.html进行任何操作:
npm运行副本
例如:
"scripts": {
"copy": "xcopy \"src\\index.html\" \"dist\" /i /s /r /y /c"
},
您还可以运行任何其他控制台命令。
此致