我基本上有这个工作区:
我有这个实际的Webpack配置:
module.exports = {
plugins: [
new CopyWebpackPlugin([
{
from: 'src/**',
test: /\.lua?$/,
to: 'resources',
transformPath (targetPath, absolutePath) {
console.log(targetPath)
console.log(absolutePath)
return targetPath;
}
}
], { debug: 'info' })
],
entry: {
"resources/[Test]/izitest/izitest_server": "./src/[Test]/izitest/main.ts"
},
module: {
rules: [
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: /node_modules/
}
]
},
resolve: {
extensions: [".tsx", ".ts", ".js"]
},
output: {
path: __dirname,
filename: "[name].js"
},
node: {
fs: "empty"
}
};
我想将所有.lua文件从./src
目录复制到./resources
并保留其原始位置。
就像文件A.lua
:src/moduleA/A.lua
转到resources/moduleA/A.lua
。
我尝试实现transformPath
,但没有成功!
另外,由于test
也捕获了.lua
,因此似乎.ts
并没有返回所有 int main()
{ int i,j,k,sorted;
int A[4][4];
int C[16];
int positive = 0;
for(i=0;i<4;i++)
{
for(j = 0; j<4; j++)
{
printf("A[%d][%d]: ", i,j);
scanf("%d", &A[i][j]);
if(A[i][j]>0){
C[positive] = A[i][j];
printf("C = %d\n");
positive++;
}
}
}
for(j=0;j<4;j++)
{
printf("%d ", A[positive]);
}
printf("\n");
//printf("Your positive numbers are: ", positive);
printf("\n");
system("pause");
return 0;
}
文件。
有任何原始方法吗?