├── .gitignore ├── .jscsrc ├── HISTORY.md ├── LICENSE ├── README.md ├── bin └── basis ├── lib ├── api.js ├── cli.js ├── completion │ ├── command.js │ └── completion.sh ├── config │ └── command.js ├── create │ ├── command.js │ ├── index.js │ └── template │ │ ├── app │ │ └── default │ │ │ ├── basis.config │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── {!!l10n}{=name}.l10n │ │ │ ├── {=name}.js │ │ │ └── {=name} │ │ │ │ ├── service.js │ │ │ │ ├── settings │ │ │ │ └── {!!l10n}l10n.js │ │ │ │ ├── template │ │ │ │ ├── layout.css │ │ │ │ ├── layout.tmpl │ │ │ │ └── {!!l10n}layout.l10n │ │ │ │ ├── type.js │ │ │ │ └── type │ │ │ │ └── type.js │ │ │ └── {!!git}.gitignore │ │ ├── module │ │ ├── default │ │ │ ├── index.js │ │ │ └── template │ │ │ │ ├── view.css │ │ │ │ └── view.tmpl │ │ └── list │ │ │ ├── index.js │ │ │ └── template │ │ │ ├── item.css │ │ │ ├── item.tmpl │ │ │ ├── list.css │ │ │ └── list.tmpl │ │ └── type │ │ └── default │ │ └── {=instanceName}.js └── version.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/.jscsrc -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/README.md -------------------------------------------------------------------------------- /bin/basis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/bin/basis -------------------------------------------------------------------------------- /lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/api.js -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/completion/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/completion/command.js -------------------------------------------------------------------------------- /lib/completion/completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/completion/completion.sh -------------------------------------------------------------------------------- /lib/config/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/config/command.js -------------------------------------------------------------------------------- /lib/create/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/command.js -------------------------------------------------------------------------------- /lib/create/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/index.js -------------------------------------------------------------------------------- /lib/create/template/app/default/basis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/app/default/basis.config -------------------------------------------------------------------------------- /lib/create/template/app/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/app/default/index.html -------------------------------------------------------------------------------- /lib/create/template/app/default/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/app/default/package.json -------------------------------------------------------------------------------- /lib/create/template/app/default/src/{!!l10n}{=name}.l10n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/app/default/src/{!!l10n}{=name}.l10n -------------------------------------------------------------------------------- /lib/create/template/app/default/src/{=name}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/app/default/src/{=name}.js -------------------------------------------------------------------------------- /lib/create/template/app/default/src/{=name}/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/app/default/src/{=name}/service.js -------------------------------------------------------------------------------- /lib/create/template/app/default/src/{=name}/settings/{!!l10n}l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/app/default/src/{=name}/settings/{!!l10n}l10n.js -------------------------------------------------------------------------------- /lib/create/template/app/default/src/{=name}/template/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/app/default/src/{=name}/template/layout.css -------------------------------------------------------------------------------- /lib/create/template/app/default/src/{=name}/template/layout.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/app/default/src/{=name}/template/layout.tmpl -------------------------------------------------------------------------------- /lib/create/template/app/default/src/{=name}/template/{!!l10n}layout.l10n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/app/default/src/{=name}/template/{!!l10n}layout.l10n -------------------------------------------------------------------------------- /lib/create/template/app/default/src/{=name}/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/app/default/src/{=name}/type.js -------------------------------------------------------------------------------- /lib/create/template/app/default/src/{=name}/type/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/app/default/src/{=name}/type/type.js -------------------------------------------------------------------------------- /lib/create/template/app/default/{!!git}.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | -------------------------------------------------------------------------------- /lib/create/template/module/default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/module/default/index.js -------------------------------------------------------------------------------- /lib/create/template/module/default/template/view.css: -------------------------------------------------------------------------------- 1 | .{=name} 2 | { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /lib/create/template/module/default/template/view.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/module/default/template/view.tmpl -------------------------------------------------------------------------------- /lib/create/template/module/list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/module/list/index.js -------------------------------------------------------------------------------- /lib/create/template/module/list/template/item.css: -------------------------------------------------------------------------------- 1 | .item 2 | { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /lib/create/template/module/list/template/item.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/module/list/template/item.tmpl -------------------------------------------------------------------------------- /lib/create/template/module/list/template/list.css: -------------------------------------------------------------------------------- 1 | .list 2 | { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /lib/create/template/module/list/template/list.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/module/list/template/list.tmpl -------------------------------------------------------------------------------- /lib/create/template/type/default/{=instanceName}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/create/template/type/default/{=instanceName}.js -------------------------------------------------------------------------------- /lib/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/lib/version.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basisjs/basisjs-tools/HEAD/package.json --------------------------------------------------------------------------------