├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gulpfile.js ├── package.json ├── src ├── collection.json └── lib-standalone │ ├── files │ ├── gulpfile │ │ └── gulpfile.lib.js │ └── lib │ │ └── __path__ │ │ ├── build-tools │ │ ├── build-scss-task.js │ │ ├── gulpfile.js │ │ ├── inline-resources.js │ │ ├── release-composer.js │ │ ├── rollup-globals.js │ │ ├── src-bundler.js │ │ ├── src-compiler.js │ │ └── task-helpers.js │ │ ├── index.ts │ │ ├── package.json │ │ ├── public_api.ts │ │ ├── src │ │ ├── index.ts │ │ ├── sample.component.html │ │ ├── sample.component.scss │ │ ├── sample.component.spec.ts │ │ ├── sample.component.ts │ │ ├── sample.module.ts │ │ └── sample.service.ts │ │ └── tsconfig-build.json │ ├── index.ts │ ├── schema.d.ts │ └── schema.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/package.json -------------------------------------------------------------------------------- /src/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/src/collection.json -------------------------------------------------------------------------------- /src/lib-standalone/files/gulpfile/gulpfile.lib.js: -------------------------------------------------------------------------------- 1 | require('./src/lib/build-tools/gulpfile'); 2 | -------------------------------------------------------------------------------- /src/lib-standalone/files/lib/__path__/build-tools/build-scss-task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/src/lib-standalone/files/lib/__path__/build-tools/build-scss-task.js -------------------------------------------------------------------------------- /src/lib-standalone/files/lib/__path__/build-tools/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/src/lib-standalone/files/lib/__path__/build-tools/gulpfile.js -------------------------------------------------------------------------------- /src/lib-standalone/files/lib/__path__/build-tools/inline-resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/src/lib-standalone/files/lib/__path__/build-tools/inline-resources.js -------------------------------------------------------------------------------- /src/lib-standalone/files/lib/__path__/build-tools/release-composer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/src/lib-standalone/files/lib/__path__/build-tools/release-composer.js -------------------------------------------------------------------------------- /src/lib-standalone/files/lib/__path__/build-tools/rollup-globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/src/lib-standalone/files/lib/__path__/build-tools/rollup-globals.js -------------------------------------------------------------------------------- /src/lib-standalone/files/lib/__path__/build-tools/src-bundler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/src/lib-standalone/files/lib/__path__/build-tools/src-bundler.js -------------------------------------------------------------------------------- /src/lib-standalone/files/lib/__path__/build-tools/src-compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/src/lib-standalone/files/lib/__path__/build-tools/src-compiler.js -------------------------------------------------------------------------------- /src/lib-standalone/files/lib/__path__/build-tools/task-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/src/lib-standalone/files/lib/__path__/build-tools/task-helpers.js -------------------------------------------------------------------------------- /src/lib-standalone/files/lib/__path__/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/lib-standalone/files/lib/__path__/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/src/lib-standalone/files/lib/__path__/package.json -------------------------------------------------------------------------------- /src/lib-standalone/files/lib/__path__/public_api.ts: -------------------------------------------------------------------------------- 1 | export * from './src/index'; 2 | -------------------------------------------------------------------------------- /src/lib-standalone/files/lib/__path__/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caroso1222/ng-lib-schematics/HEAD/src/lib-standalone/files/lib/__path__/src/index.ts -------------------------------------------------------------------------------- /src/lib-standalone/files/lib/__path__/src/sample.component.html: -------------------------------------------------------------------------------- 1 |