Ionic 설정 메모 [sass,coffee]
이하, 초기 설정의 메모. Ionic의 표준이라고 sass, coffee가 포함되어 있지 않은 것 같았기 때문에 수동으로 설정했습니다.
ionic 설치
$ npm install -g cordova ionic
scaffold
$ ionic start myApp sidemenu
$ cd myApp
$ npm install
$ bower install
$ gulp install
$ ionic setup sass
$ ionic platform add ios
js -> coffee 변환
coffee 도입
$ npm install --save-dev coffee-script
$ npm install --save-dev gulp-coffee
$ npm install -g js2coffee
$ mkdir coffee
gulpfile.js 다시 쓰기
require('coffee-script/register');
require('./gulpfile.coffee');
Compile
$ gulp coffee
watch task에 coffee 추가
gulpfile.coffee
paths = sass: [ './scss/**/*.scss' ], coffee: ['./coffee/**/*.coffee']
gulp.task 'watch', ->
gulp.watch paths.sass, [ 'sass' ]
gulp.watch paths.coffee, ['coffee']
return
gitignore에 추가
www/js/*.js
www/css/*.css
www/lib/
emulator
ripple
$ npm install -g ripple-emulator
$ ripple emulate --path www/
표준
$ ionic emulate ios
screenshot:
참고
$ npm install -g cordova ionic
$ ionic start myApp sidemenu
$ cd myApp
$ npm install
$ bower install
$ gulp install
$ ionic setup sass
$ ionic platform add ios
js -> coffee 변환
coffee 도입
$ npm install --save-dev coffee-script
$ npm install --save-dev gulp-coffee
$ npm install -g js2coffee
$ mkdir coffee
gulpfile.js 다시 쓰기
require('coffee-script/register');
require('./gulpfile.coffee');
Compile
$ gulp coffee
watch task에 coffee 추가
gulpfile.coffee
paths = sass: [ './scss/**/*.scss' ], coffee: ['./coffee/**/*.coffee']
gulp.task 'watch', ->
gulp.watch paths.sass, [ 'sass' ]
gulp.watch paths.coffee, ['coffee']
return
gitignore에 추가
www/js/*.js
www/css/*.css
www/lib/
emulator
ripple
$ npm install -g ripple-emulator
$ ripple emulate --path www/
표준
$ ionic emulate ios
screenshot:
참고
$ npm install --save-dev coffee-script
$ npm install --save-dev gulp-coffee
$ npm install -g js2coffee
$ mkdir coffee
require('coffee-script/register');
require('./gulpfile.coffee');
$ gulp coffee
paths = sass: [ './scss/**/*.scss' ], coffee: ['./coffee/**/*.coffee']
gulp.task 'watch', ->
gulp.watch paths.sass, [ 'sass' ]
gulp.watch paths.coffee, ['coffee']
return
www/js/*.js
www/css/*.css
www/lib/
ripple
$ npm install -g ripple-emulator
$ ripple emulate --path www/
표준
$ ionic emulate ios
screenshot:
참고
Reference
이 문제에 관하여(Ionic 설정 메모 [sass,coffee]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/BigSea/items/5039bd7f7d811800a244텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)