Visual Studio 2015의 Grunt를 사용하여 파일 복사
그래서 Visual Studio에서 만든 js 파일을 Grunt에서 Eclipse 프로젝트 아래에 복사합니다.
Visual Studio 2015부터 Grunt가 내장되어 사용이 매우 간단해졌습니다.
프로젝트 파일과 동일한 계층 구조에 package.json과 Gruntfile.js를 만듭니다.
package.json
{
"name": "AnimeInfoClient",
"version": "0.0.0",
"description": "AnimeInfoClient",
"main": "Gruntfile.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/kumo2ji/AnimeInfoClient.git"
},
"author": "kumo2ji",
"license": "BSD",
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-copy": "~0.8.1"
}
}
devDependencies의 버전은 보완이 효과가 있다.
Gruntfile.js
module.exports = function (grunt) {
grunt.initConfig({
copy: {
main: {
files: [
{
expand: true, src: ['*.js', 'index.html', '!Gruntfile.js'],
dest: '../AnimeInfoClient/war', filter: 'isFile'
}
]
},
},
});
grunt.loadNpmTasks('grunt-contrib-copy');
};
보기 > 기타 창 > 태스크 러너 탐색기에서 태스크 러너 익스플로러를 확인하면 copy 태스크가 추가되었습니다.
copy:main을 더블 클릭하면 필요한 파일의 복사가 실행된다.
Reference
이 문제에 관하여(Visual Studio 2015의 Grunt를 사용하여 파일 복사), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kumo2ji/items/c9d821529aa084808b6a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)