如何从 angular-spring-data-rest 存储库构建未压缩(未编译)angular-spring-data-rest.js?
How build uncompressed (uncompiled) angular-spring-data-rest.js from angular-spring-data-rest repository?
这里是 anular-spring-data-rest 存储库。如何构建angular-spring-data-rest.js
?是的,我看到了 bower
和 npm
命令,但是它们在哪里存储构建的 js
文件(以及如何构建未压缩版本)?我个人对这些工具不是很熟悉,但是我需要未编译(未压缩)的js文件。
他们正在使用 grunt build tool. They have registered 3 task in Gruntfile.js 构建、测试和默认
所以你还需要全局安装 grunt
$ npm install gulp -g
$ cd angular-spring-data-rest
$ npm install # to install repo dependencies
$ gulp # or gulp build
$ cd dist
这里是 anular-spring-data-rest 存储库。如何构建angular-spring-data-rest.js
?是的,我看到了 bower
和 npm
命令,但是它们在哪里存储构建的 js
文件(以及如何构建未压缩版本)?我个人对这些工具不是很熟悉,但是我需要未编译(未压缩)的js文件。
他们正在使用 grunt build tool. They have registered 3 task in Gruntfile.js 构建、测试和默认
所以你还需要全局安装 grunt
$ npm install gulp -g
$ cd angular-spring-data-rest
$ npm install # to install repo dependencies
$ gulp # or gulp build
$ cd dist