├── .bowerrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── compile.config.json ├── images │ └── change.png ├── src │ ├── code.js │ ├── index.js │ ├── models │ │ └── index │ │ │ └── main.model.js │ ├── module │ │ ├── config.js │ │ └── router │ │ │ ├── index.js │ │ │ └── routers.js │ └── views │ │ ├── code │ │ └── main.view.js │ │ └── index │ │ ├── main.view.js │ │ └── template │ │ └── main.html ├── stylesheets │ ├── code.scss │ ├── code │ │ └── main.scss │ ├── common │ │ └── header.scss │ ├── index.scss │ └── index │ │ └── main.scss └── web │ ├── code.jade │ ├── code │ └── container.jade │ ├── common │ ├── footer.jade │ ├── header.jade │ ├── lib.jade │ └── style.jade │ ├── index.jade │ └── index │ └── container.jade ├── bin ├── alias.js ├── compile.js ├── getEntry.js ├── hook │ └── prelintcommit.js ├── rmdir.js ├── temp │ ├── model.js │ └── view.js ├── webpack.dev.config.js └── webpack.product.config.js ├── bower.json ├── gulpfile.js ├── package.json ├── test └── config.spec.js └── tools.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory":"app/link/" 3 | } -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/README.md -------------------------------------------------------------------------------- /app/compile.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/compile.config.json -------------------------------------------------------------------------------- /app/images/change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/images/change.png -------------------------------------------------------------------------------- /app/src/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/src/code.js -------------------------------------------------------------------------------- /app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/src/index.js -------------------------------------------------------------------------------- /app/src/models/index/main.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/src/models/index/main.model.js -------------------------------------------------------------------------------- /app/src/module/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/src/module/config.js -------------------------------------------------------------------------------- /app/src/module/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/src/module/router/index.js -------------------------------------------------------------------------------- /app/src/module/router/routers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/src/module/router/routers.js -------------------------------------------------------------------------------- /app/src/views/code/main.view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/src/views/code/main.view.js -------------------------------------------------------------------------------- /app/src/views/index/main.view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/src/views/index/main.view.js -------------------------------------------------------------------------------- /app/src/views/index/template/main.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/stylesheets/code.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/stylesheets/code/main.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/stylesheets/common/header.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/stylesheets/index.scss: -------------------------------------------------------------------------------- 1 | @import "index/main"; -------------------------------------------------------------------------------- /app/stylesheets/index/main.scss: -------------------------------------------------------------------------------- 1 | #main{ 2 | color: #000; 3 | background:url('../images/change.png') ; 4 | } 5 | -------------------------------------------------------------------------------- /app/web/code.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/web/code.jade -------------------------------------------------------------------------------- /app/web/code/container.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/web/code/container.jade -------------------------------------------------------------------------------- /app/web/common/footer.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/web/common/footer.jade -------------------------------------------------------------------------------- /app/web/common/header.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/web/common/header.jade -------------------------------------------------------------------------------- /app/web/common/lib.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/web/common/lib.jade -------------------------------------------------------------------------------- /app/web/common/style.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/web/common/style.jade -------------------------------------------------------------------------------- /app/web/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/web/index.jade -------------------------------------------------------------------------------- /app/web/index/container.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/app/web/index/container.jade -------------------------------------------------------------------------------- /bin/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/bin/alias.js -------------------------------------------------------------------------------- /bin/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/bin/compile.js -------------------------------------------------------------------------------- /bin/getEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/bin/getEntry.js -------------------------------------------------------------------------------- /bin/hook/prelintcommit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/bin/hook/prelintcommit.js -------------------------------------------------------------------------------- /bin/rmdir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/bin/rmdir.js -------------------------------------------------------------------------------- /bin/temp/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/bin/temp/model.js -------------------------------------------------------------------------------- /bin/temp/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/bin/temp/view.js -------------------------------------------------------------------------------- /bin/webpack.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/bin/webpack.dev.config.js -------------------------------------------------------------------------------- /bin/webpack.product.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/bin/webpack.product.config.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/bower.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/package.json -------------------------------------------------------------------------------- /test/config.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/test/config.spec.js -------------------------------------------------------------------------------- /tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapling-team/generator-sapling-pc/HEAD/tools.js --------------------------------------------------------------------------------