pax_global_header00006660000000000000000000000064136175377530014533gustar00rootroot0000000000000052 comment=3fab420e503674dd93c5845bff234c7f108e9a43 node-vue-template-compiler-2.4.2+dfsg/000077500000000000000000000000001361753775300176225ustar00rootroot00000000000000node-vue-template-compiler-2.4.2+dfsg/.babelrc000066400000000000000000000002401361753775300212110ustar00rootroot00000000000000{ "presets": ["es2015", "flow-vue"], "plugins": ["transform-vue-jsx", "syntax-dynamic-import"], "ignore": [ "dist/*.js", "packages/**/*.js" ] } node-vue-template-compiler-2.4.2+dfsg/.editorconfig000066400000000000000000000003641361753775300223020ustar00rootroot00000000000000# http://editorconfig.org root = true [*] charset = utf-8 indent_style = space indent_size = 2 end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true [*.md] insert_final_newline = false trim_trailing_whitespace = false node-vue-template-compiler-2.4.2+dfsg/.eslintignore000066400000000000000000000000231361753775300223200ustar00rootroot00000000000000flow dist packages node-vue-template-compiler-2.4.2+dfsg/.eslintrc000066400000000000000000000002701361753775300214450ustar00rootroot00000000000000{ "root": true, "plugins": [ "flowtype" ], "extends": [ "plugin:vue-libs/recommended", "plugin:flowtype/recommended" ], "globals": { "__WEEX__": true } } node-vue-template-compiler-2.4.2+dfsg/.flowconfig000066400000000000000000000014171361753775300217630ustar00rootroot00000000000000[ignore] .*/node_modules/.* .*/test/.* .*/build/.* .*/examples/.* .*/benchmarks/.* [include] [libs] flow [options] unsafe.enable_getters_and_setters=true module.name_mapper='^compiler/\(.*\)$' -> '/src/compiler/\1' module.name_mapper='^core/\(.*\)$' -> '/src/core/\1' module.name_mapper='^shared/\(.*\)$' -> '/src/shared/\1' module.name_mapper='^web/\(.*\)$' -> '/src/platforms/web/\1' module.name_mapper='^weex/\(.*\)$' -> '/src/platforms/weex/\1' module.name_mapper='^server/\(.*\)$' -> '/src/server/\1' module.name_mapper='^entries/\(.*\)$' -> '/src/entries/\1' module.name_mapper='^sfc/\(.*\)$' -> '/src/sfc/\1' suppress_comment= \\(.\\|\n\\)*\\$flow-disable-line node-vue-template-compiler-2.4.2+dfsg/.github/000077500000000000000000000000001361753775300211625ustar00rootroot00000000000000node-vue-template-compiler-2.4.2+dfsg/.github/CODE_OF_CONDUCT.md000066400000000000000000000026171361753775300237670ustar00rootroot00000000000000# Contributor Code of Conduct As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities. We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion. Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team. Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers. This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/) node-vue-template-compiler-2.4.2+dfsg/.github/COMMIT_CONVENTION.md000066400000000000000000000053051361753775300242410ustar00rootroot00000000000000## Git Commit Message Convention > This is adapted from [Angular's commit convention](https://github.com/conventional-changelog/conventional-changelog/blob/master/packages/conventional-changelog-angular/convention.md). #### Examples Appears under "Features" header, `compiler` subheader: ``` feat(compiler): add 'comments' option ``` Appears under "Bug Fixes" header, `v-model` subheader, with a link to issue #28: ``` fix(v-model): handle events on blur close #28 ``` Appears under "Performance Improvements" header, and under "Breaking Changes" with the breaking change explanation: ``` perf(core): improve vdom diffing by removing 'foo' option BREAKING CHANGE: The 'foo' option has been removed. ``` The following commit and commit `667ecc1` do not appear in the changelog if they are under the same release. If not, the revert commit appears under the "Reverts" header. ``` revert: feat(compiler): add 'comments' option This reverts commit 667ecc1654a317a13331b17617d973392f415f02. ``` ### Full Message Format A commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**: ``` ():