├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MIGRATION-GUIDE.md ├── README.md ├── angular-package.schema.json ├── bin └── angular-package-builder.js ├── docs ├── error-jsdoc.png ├── error-lambda.png ├── error-synthetic.png └── preview.gif ├── index.ts ├── jest.config.json ├── jest.setup.js ├── package.json ├── src ├── analyzer │ └── import.analyzer.ts ├── angular-package-builder.ts ├── angular-package-config.interface.ts ├── angular-package-orchestrator.ts ├── angular-package-reader.ts ├── angular-package.ts ├── bundler │ ├── angular-package.bundler.ts │ ├── dependencies │ │ ├── angular-dependencies.ts │ │ ├── rxjs5-dependencies.ts │ │ ├── rxjs6-dependencies.ts │ │ └── typescript-dependencies.ts │ ├── rollup-bundling-targets.ts │ └── rollup-configuration-builder.ts ├── compiler │ ├── angular-package.compiler.ts │ ├── typescript-compilation-targets.ts │ └── typescript-configuration-builder.ts ├── composer │ └── angular-package.composer.ts ├── logger │ ├── angular-package-logger.interfaces.ts │ ├── angular-package-logger.ts │ └── logger-symbols.ts ├── transformer │ ├── angular-package.transformer.ts │ ├── external-resources │ │ ├── angular-external-resources.analyzer.ts │ │ └── angular-external-resources.interfaces.ts │ ├── external-styles │ │ ├── angular-external-styles.analyzer.ts │ │ └── angular-external-styles.transformer.ts │ ├── external-templates │ │ ├── angular-external-templates.analyzer.ts │ │ └── angular-external-templates.transformer.ts │ └── languages │ │ ├── css.transformer.ts │ │ ├── html.transformer.ts │ │ └── sass.transformer.ts └── utilities │ ├── copy-files.ts │ ├── create-typescript-project.ts │ ├── deduplicate-array.ts │ ├── find-files.ts │ ├── flatten-array.ts │ ├── get-file-name-by-package-name.ts │ ├── get-file-type.ts │ ├── get-installed-dependency-version.ts │ ├── is-windows.ts │ ├── read-file.ts │ ├── supports-advanced-logging.ts │ └── write-file.ts ├── test ├── errors │ ├── build.js │ ├── circular-dependencies-three │ │ └── packages │ │ │ ├── build.ts │ │ │ ├── library-core │ │ │ ├── .angular-package.json │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── form-control-registry │ │ │ │ └── form-control-registry.service.ts │ │ │ │ └── library.module.ts │ │ │ ├── library-tracking │ │ │ ├── .angular-package.json │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── library.module.ts │ │ │ │ └── tracking │ │ │ │ └── tracking.service.ts │ │ │ ├── library-ui │ │ │ ├── .angular-package.json │ │ │ ├── .gitignore │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── input │ │ │ │ │ ├── input.component.html │ │ │ │ │ ├── input.component.scss │ │ │ │ │ └── input.component.ts │ │ │ │ └── library.module.ts │ │ │ └── testing │ │ │ │ ├── index.ts │ │ │ │ └── input │ │ │ │ └── input.test-utility.ts │ │ │ └── tsconfig.json │ ├── circular-dependencies-two │ │ └── packages │ │ │ ├── build.ts │ │ │ ├── library-core │ │ │ ├── .angular-package.json │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── form-control-registry │ │ │ │ └── form-control-registry.service.ts │ │ │ │ └── library.module.ts │ │ │ ├── library-tracking │ │ │ ├── .angular-package.json │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── library.module.ts │ │ │ │ └── tracking │ │ │ │ └── tracking.service.ts │ │ │ ├── library-ui │ │ │ ├── .angular-package.json │ │ │ ├── .gitignore │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── input │ │ │ │ │ ├── input.component.html │ │ │ │ │ ├── input.component.scss │ │ │ │ │ └── input.component.ts │ │ │ │ └── library.module.ts │ │ │ └── testing │ │ │ │ ├── index.ts │ │ │ │ └── input │ │ │ │ └── input.test-utility.ts │ │ │ └── tsconfig.json │ ├── inner-circular-dependencies-two │ │ └── packages │ │ │ ├── build.ts │ │ │ ├── library-core │ │ │ ├── .angular-package.json │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── form-control-registry │ │ │ │ └── form-control-registry.service.ts │ │ │ │ └── library.module.ts │ │ │ ├── library-tracking │ │ │ ├── .angular-package.json │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── library.module.ts │ │ │ │ └── tracking │ │ │ │ └── tracking.service.ts │ │ │ ├── library-ui │ │ │ ├── .angular-package.json │ │ │ ├── .gitignore │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── input │ │ │ │ │ ├── input.component.html │ │ │ │ │ ├── input.component.scss │ │ │ │ │ └── input.component.ts │ │ │ │ └── library.module.ts │ │ │ └── testing │ │ │ │ ├── index.ts │ │ │ │ └── input │ │ │ │ └── input.test-utility.ts │ │ │ └── tsconfig.json │ ├── library-error-angular-compiler-2 │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.html │ │ │ ├── input.component.scss │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ ├── library-error-angular-compiler │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.html │ │ │ ├── input.component.scss │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ ├── library-error-config-broken │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.html │ │ │ ├── input.component.scss │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ ├── library-error-config-invalid │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.html │ │ │ ├── input.component.scss │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ ├── library-error-config-missing │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.html │ │ │ ├── input.component.scss │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ ├── library-error-rollup │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.html │ │ │ ├── input.component.scss │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ ├── library-error-tsickle │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.html │ │ │ ├── input.component.scss │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ ├── library-error-typescript │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.html │ │ │ ├── input.component.scss │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ ├── library-style-css-invalid │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.css │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ ├── library-style-missing │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ ├── library-style-scss-invalid │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.scss │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ ├── library-style-unsupported │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.css3 │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ ├── library-template-html-invalid │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.html │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ ├── library-template-missing │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ ├── library-template-unsupported │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.html5 │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ └── library-warning-rollup │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ ├── input │ │ ├── input.component.html │ │ ├── input.component.scss │ │ └── input.component.ts │ │ └── library.module.ts ├── external-resources │ ├── build.js │ ├── external-resources.spec.ts │ └── packages │ │ ├── library-style-css-empty │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.css │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ │ ├── library-style-css │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.css │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ │ ├── library-style-scss-empty │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.scss │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ │ ├── library-style-scss │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.scss │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ │ ├── library-template-html-empty │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── input │ │ │ ├── input.component.html │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ │ └── library-template-html │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── build.ts │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ ├── input │ │ ├── input.component.html │ │ └── input.component.ts │ │ └── library.module.ts ├── multiple-libraries │ ├── build.js │ ├── multiple-dependent-libraries.spec.ts │ └── packages │ │ ├── build.ts │ │ ├── library-core │ │ ├── .angular-package.json │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── form-control-registry │ │ │ └── form-control-registry.service.ts │ │ │ └── library.module.ts │ │ ├── library-tracking │ │ ├── .angular-package.json │ │ ├── index.ts │ │ ├── package.json │ │ └── src │ │ │ ├── library.module.ts │ │ │ └── tracking │ │ │ └── tracking.service.ts │ │ ├── library-ui │ │ ├── .angular-package.json │ │ ├── .gitignore │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── input │ │ │ │ ├── input.component.html │ │ │ │ ├── input.component.scss │ │ │ │ └── input.component.ts │ │ │ └── library.module.ts │ │ └── testing │ │ │ ├── index.ts │ │ │ └── input │ │ │ └── input.test-utility.ts │ │ └── tsconfig.json ├── single-library-custom-paths │ ├── build.js │ ├── packages │ │ ├── build.ts │ │ ├── library │ │ │ ├── .angular-package.json │ │ │ ├── .gitignore │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── components │ │ │ │ ├── input │ │ │ │ │ ├── input.component.html │ │ │ │ │ ├── input.component.scss │ │ │ │ │ └── input.component.ts │ │ │ │ └── library.module.ts │ │ │ │ ├── index.ts │ │ │ │ └── testing │ │ │ │ ├── index.ts │ │ │ │ └── input │ │ │ │ └── input.test-utility.ts │ │ └── tsconfig.json │ └── single-library-custom-paths.spec.ts ├── single-library │ ├── build.js │ ├── packages │ │ ├── build.ts │ │ ├── library │ │ │ ├── .angular-package.json │ │ │ ├── .gitignore │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── input │ │ │ │ ├── input.component.html │ │ │ │ ├── input.component.scss │ │ │ │ └── input.component.ts │ │ │ │ └── library.module.ts │ │ └── tsconfig.json │ └── single-library.spec.ts └── utilities │ ├── es2015 │ ├── es2015-file.ts │ └── expect-es2015.ts │ ├── es5 │ ├── es5-file.ts │ └── expect-es5.ts │ ├── expect-inline-style.ts │ ├── expect-inline-template.ts │ ├── expect-package.ts │ ├── metadata │ ├── expect-metadata.ts │ └── metadata-file.ts │ ├── package-json │ ├── expect-package-json.ts │ └── package-json-file.ts │ ├── simplify-file-content.ts │ ├── sourcemap │ ├── expect-sourcemap.ts │ └── sourcemap-file.ts │ ├── typings │ ├── expect-typings.ts │ └── typings-file.ts │ └── umd │ ├── expect-umd.ts │ └── umd-file.ts ├── tsconfig.json └── typings.d.ts /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATION-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/MIGRATION-GUIDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/README.md -------------------------------------------------------------------------------- /angular-package.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/angular-package.schema.json -------------------------------------------------------------------------------- /bin/angular-package-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/bin/angular-package-builder.js -------------------------------------------------------------------------------- /docs/error-jsdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/docs/error-jsdoc.png -------------------------------------------------------------------------------- /docs/error-lambda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/docs/error-lambda.png -------------------------------------------------------------------------------- /docs/error-synthetic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/docs/error-synthetic.png -------------------------------------------------------------------------------- /docs/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/docs/preview.gif -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/index.ts -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/jest.config.json -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/jest.setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/package.json -------------------------------------------------------------------------------- /src/analyzer/import.analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/analyzer/import.analyzer.ts -------------------------------------------------------------------------------- /src/angular-package-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/angular-package-builder.ts -------------------------------------------------------------------------------- /src/angular-package-config.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/angular-package-config.interface.ts -------------------------------------------------------------------------------- /src/angular-package-orchestrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/angular-package-orchestrator.ts -------------------------------------------------------------------------------- /src/angular-package-reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/angular-package-reader.ts -------------------------------------------------------------------------------- /src/angular-package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/angular-package.ts -------------------------------------------------------------------------------- /src/bundler/angular-package.bundler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/bundler/angular-package.bundler.ts -------------------------------------------------------------------------------- /src/bundler/dependencies/angular-dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/bundler/dependencies/angular-dependencies.ts -------------------------------------------------------------------------------- /src/bundler/dependencies/rxjs5-dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/bundler/dependencies/rxjs5-dependencies.ts -------------------------------------------------------------------------------- /src/bundler/dependencies/rxjs6-dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/bundler/dependencies/rxjs6-dependencies.ts -------------------------------------------------------------------------------- /src/bundler/dependencies/typescript-dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/bundler/dependencies/typescript-dependencies.ts -------------------------------------------------------------------------------- /src/bundler/rollup-bundling-targets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/bundler/rollup-bundling-targets.ts -------------------------------------------------------------------------------- /src/bundler/rollup-configuration-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/bundler/rollup-configuration-builder.ts -------------------------------------------------------------------------------- /src/compiler/angular-package.compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/compiler/angular-package.compiler.ts -------------------------------------------------------------------------------- /src/compiler/typescript-compilation-targets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/compiler/typescript-compilation-targets.ts -------------------------------------------------------------------------------- /src/compiler/typescript-configuration-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/compiler/typescript-configuration-builder.ts -------------------------------------------------------------------------------- /src/composer/angular-package.composer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/composer/angular-package.composer.ts -------------------------------------------------------------------------------- /src/logger/angular-package-logger.interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/logger/angular-package-logger.interfaces.ts -------------------------------------------------------------------------------- /src/logger/angular-package-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/logger/angular-package-logger.ts -------------------------------------------------------------------------------- /src/logger/logger-symbols.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/logger/logger-symbols.ts -------------------------------------------------------------------------------- /src/transformer/angular-package.transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/transformer/angular-package.transformer.ts -------------------------------------------------------------------------------- /src/transformer/external-resources/angular-external-resources.analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/transformer/external-resources/angular-external-resources.analyzer.ts -------------------------------------------------------------------------------- /src/transformer/external-resources/angular-external-resources.interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/transformer/external-resources/angular-external-resources.interfaces.ts -------------------------------------------------------------------------------- /src/transformer/external-styles/angular-external-styles.analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/transformer/external-styles/angular-external-styles.analyzer.ts -------------------------------------------------------------------------------- /src/transformer/external-styles/angular-external-styles.transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/transformer/external-styles/angular-external-styles.transformer.ts -------------------------------------------------------------------------------- /src/transformer/external-templates/angular-external-templates.analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/transformer/external-templates/angular-external-templates.analyzer.ts -------------------------------------------------------------------------------- /src/transformer/external-templates/angular-external-templates.transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/transformer/external-templates/angular-external-templates.transformer.ts -------------------------------------------------------------------------------- /src/transformer/languages/css.transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/transformer/languages/css.transformer.ts -------------------------------------------------------------------------------- /src/transformer/languages/html.transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/transformer/languages/html.transformer.ts -------------------------------------------------------------------------------- /src/transformer/languages/sass.transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/transformer/languages/sass.transformer.ts -------------------------------------------------------------------------------- /src/utilities/copy-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/utilities/copy-files.ts -------------------------------------------------------------------------------- /src/utilities/create-typescript-project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/utilities/create-typescript-project.ts -------------------------------------------------------------------------------- /src/utilities/deduplicate-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/utilities/deduplicate-array.ts -------------------------------------------------------------------------------- /src/utilities/find-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/utilities/find-files.ts -------------------------------------------------------------------------------- /src/utilities/flatten-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/utilities/flatten-array.ts -------------------------------------------------------------------------------- /src/utilities/get-file-name-by-package-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/utilities/get-file-name-by-package-name.ts -------------------------------------------------------------------------------- /src/utilities/get-file-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/utilities/get-file-type.ts -------------------------------------------------------------------------------- /src/utilities/get-installed-dependency-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/utilities/get-installed-dependency-version.ts -------------------------------------------------------------------------------- /src/utilities/is-windows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/utilities/is-windows.ts -------------------------------------------------------------------------------- /src/utilities/read-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/utilities/read-file.ts -------------------------------------------------------------------------------- /src/utilities/supports-advanced-logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/utilities/supports-advanced-logging.ts -------------------------------------------------------------------------------- /src/utilities/write-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/src/utilities/write-file.ts -------------------------------------------------------------------------------- /test/errors/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/build.js -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/build.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-core/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-core/.angular-package.json -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-core/index.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-core/package.json -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-core/src/form-control-registry/form-control-registry.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-core/src/form-control-registry/form-control-registry.service.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-core/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-core/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-tracking/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-tracking/.angular-package.json -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-tracking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-tracking/index.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-tracking/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-tracking/package.json -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-tracking/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-tracking/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-tracking/src/tracking/tracking.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-tracking/src/tracking/tracking.service.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-ui/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-ui/.angular-package.json -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-ui/.gitignore -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-ui/index.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-ui/package.json -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-ui/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-ui/src/input/input.component.html -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-ui/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-ui/src/input/input.component.scss -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-ui/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-ui/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-ui/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-ui/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-ui/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-ui/testing/index.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/library-ui/testing/input/input.test-utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/library-ui/testing/input/input.test-utility.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-three/packages/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-three/packages/tsconfig.json -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/build.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-core/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-core/.angular-package.json -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-core/index.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-core/package.json -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-core/src/form-control-registry/form-control-registry.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-core/src/form-control-registry/form-control-registry.service.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-core/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-core/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-tracking/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-tracking/.angular-package.json -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-tracking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-tracking/index.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-tracking/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-tracking/package.json -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-tracking/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-tracking/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-tracking/src/tracking/tracking.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-tracking/src/tracking/tracking.service.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-ui/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-ui/.angular-package.json -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-ui/.gitignore -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-ui/index.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-ui/package.json -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-ui/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-ui/src/input/input.component.html -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-ui/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-ui/src/input/input.component.scss -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-ui/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-ui/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-ui/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-ui/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-ui/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-ui/testing/index.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/library-ui/testing/input/input.test-utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/library-ui/testing/input/input.test-utility.ts -------------------------------------------------------------------------------- /test/errors/circular-dependencies-two/packages/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/circular-dependencies-two/packages/tsconfig.json -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/build.ts -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-core/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-core/.angular-package.json -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-core/index.ts -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-core/package.json -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-core/src/form-control-registry/form-control-registry.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-core/src/form-control-registry/form-control-registry.service.ts -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-core/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-core/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-tracking/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-tracking/.angular-package.json -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-tracking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-tracking/index.ts -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-tracking/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-tracking/package.json -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-tracking/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-tracking/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-tracking/src/tracking/tracking.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-tracking/src/tracking/tracking.service.ts -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-ui/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-ui/.angular-package.json -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-ui/.gitignore -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-ui/index.ts -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-ui/package.json -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-ui/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-ui/src/input/input.component.html -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-ui/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-ui/src/input/input.component.scss -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-ui/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-ui/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-ui/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-ui/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-ui/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-ui/testing/index.ts -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/library-ui/testing/input/input.test-utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/library-ui/testing/input/input.test-utility.ts -------------------------------------------------------------------------------- /test/errors/inner-circular-dependencies-two/packages/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/inner-circular-dependencies-two/packages/tsconfig.json -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler-2/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler-2/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler-2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler-2/.gitignore -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler-2/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler-2/build.ts -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler-2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler-2/index.ts -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler-2/package.json -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler-2/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler-2/src/input/input.component.html -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler-2/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler-2/src/input/input.component.scss -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler-2/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler-2/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler-2/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler-2/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler/.gitignore -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler/build.ts -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler/index.ts -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler/package.json -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler/src/input/input.component.html -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler/src/input/input.component.scss -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-error-angular-compiler/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-angular-compiler/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-error-config-broken/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-broken/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-error-config-broken/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-broken/.gitignore -------------------------------------------------------------------------------- /test/errors/library-error-config-broken/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-broken/build.ts -------------------------------------------------------------------------------- /test/errors/library-error-config-broken/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-broken/index.ts -------------------------------------------------------------------------------- /test/errors/library-error-config-broken/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-broken/package.json -------------------------------------------------------------------------------- /test/errors/library-error-config-broken/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-broken/src/input/input.component.html -------------------------------------------------------------------------------- /test/errors/library-error-config-broken/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-broken/src/input/input.component.scss -------------------------------------------------------------------------------- /test/errors/library-error-config-broken/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-broken/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-error-config-broken/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-broken/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-error-config-invalid/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-invalid/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-error-config-invalid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-invalid/.gitignore -------------------------------------------------------------------------------- /test/errors/library-error-config-invalid/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-invalid/build.ts -------------------------------------------------------------------------------- /test/errors/library-error-config-invalid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-invalid/index.ts -------------------------------------------------------------------------------- /test/errors/library-error-config-invalid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-invalid/package.json -------------------------------------------------------------------------------- /test/errors/library-error-config-invalid/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-invalid/src/input/input.component.html -------------------------------------------------------------------------------- /test/errors/library-error-config-invalid/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-invalid/src/input/input.component.scss -------------------------------------------------------------------------------- /test/errors/library-error-config-invalid/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-invalid/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-error-config-invalid/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-invalid/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-error-config-missing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-missing/.gitignore -------------------------------------------------------------------------------- /test/errors/library-error-config-missing/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-missing/build.ts -------------------------------------------------------------------------------- /test/errors/library-error-config-missing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-missing/index.ts -------------------------------------------------------------------------------- /test/errors/library-error-config-missing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-missing/package.json -------------------------------------------------------------------------------- /test/errors/library-error-config-missing/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-missing/src/input/input.component.html -------------------------------------------------------------------------------- /test/errors/library-error-config-missing/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-missing/src/input/input.component.scss -------------------------------------------------------------------------------- /test/errors/library-error-config-missing/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-missing/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-error-config-missing/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-config-missing/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-error-rollup/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-rollup/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-error-rollup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-rollup/.gitignore -------------------------------------------------------------------------------- /test/errors/library-error-rollup/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-rollup/build.ts -------------------------------------------------------------------------------- /test/errors/library-error-rollup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-rollup/index.ts -------------------------------------------------------------------------------- /test/errors/library-error-rollup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-rollup/package.json -------------------------------------------------------------------------------- /test/errors/library-error-rollup/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-rollup/src/input/input.component.html -------------------------------------------------------------------------------- /test/errors/library-error-rollup/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-rollup/src/input/input.component.scss -------------------------------------------------------------------------------- /test/errors/library-error-rollup/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-rollup/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-error-rollup/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-rollup/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-error-tsickle/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-tsickle/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-error-tsickle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-tsickle/.gitignore -------------------------------------------------------------------------------- /test/errors/library-error-tsickle/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-tsickle/build.ts -------------------------------------------------------------------------------- /test/errors/library-error-tsickle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-tsickle/index.ts -------------------------------------------------------------------------------- /test/errors/library-error-tsickle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-tsickle/package.json -------------------------------------------------------------------------------- /test/errors/library-error-tsickle/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-tsickle/src/input/input.component.html -------------------------------------------------------------------------------- /test/errors/library-error-tsickle/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-tsickle/src/input/input.component.scss -------------------------------------------------------------------------------- /test/errors/library-error-tsickle/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-tsickle/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-error-tsickle/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-tsickle/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-error-typescript/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-typescript/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-error-typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-typescript/.gitignore -------------------------------------------------------------------------------- /test/errors/library-error-typescript/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-typescript/build.ts -------------------------------------------------------------------------------- /test/errors/library-error-typescript/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-typescript/index.ts -------------------------------------------------------------------------------- /test/errors/library-error-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-typescript/package.json -------------------------------------------------------------------------------- /test/errors/library-error-typescript/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-typescript/src/input/input.component.html -------------------------------------------------------------------------------- /test/errors/library-error-typescript/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-typescript/src/input/input.component.scss -------------------------------------------------------------------------------- /test/errors/library-error-typescript/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-typescript/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-error-typescript/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-error-typescript/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-style-css-invalid/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-css-invalid/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-style-css-invalid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-css-invalid/.gitignore -------------------------------------------------------------------------------- /test/errors/library-style-css-invalid/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-css-invalid/build.ts -------------------------------------------------------------------------------- /test/errors/library-style-css-invalid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-css-invalid/index.ts -------------------------------------------------------------------------------- /test/errors/library-style-css-invalid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-css-invalid/package.json -------------------------------------------------------------------------------- /test/errors/library-style-css-invalid/src/input/input.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-css-invalid/src/input/input.component.css -------------------------------------------------------------------------------- /test/errors/library-style-css-invalid/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-css-invalid/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-style-css-invalid/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-css-invalid/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-style-missing/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-missing/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-style-missing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-missing/.gitignore -------------------------------------------------------------------------------- /test/errors/library-style-missing/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-missing/build.ts -------------------------------------------------------------------------------- /test/errors/library-style-missing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-missing/index.ts -------------------------------------------------------------------------------- /test/errors/library-style-missing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-missing/package.json -------------------------------------------------------------------------------- /test/errors/library-style-missing/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-missing/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-style-missing/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-missing/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-style-scss-invalid/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-scss-invalid/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-style-scss-invalid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-scss-invalid/.gitignore -------------------------------------------------------------------------------- /test/errors/library-style-scss-invalid/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-scss-invalid/build.ts -------------------------------------------------------------------------------- /test/errors/library-style-scss-invalid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-scss-invalid/index.ts -------------------------------------------------------------------------------- /test/errors/library-style-scss-invalid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-scss-invalid/package.json -------------------------------------------------------------------------------- /test/errors/library-style-scss-invalid/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-scss-invalid/src/input/input.component.scss -------------------------------------------------------------------------------- /test/errors/library-style-scss-invalid/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-scss-invalid/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-style-scss-invalid/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-scss-invalid/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-style-unsupported/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-unsupported/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-style-unsupported/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-unsupported/.gitignore -------------------------------------------------------------------------------- /test/errors/library-style-unsupported/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-unsupported/build.ts -------------------------------------------------------------------------------- /test/errors/library-style-unsupported/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-unsupported/index.ts -------------------------------------------------------------------------------- /test/errors/library-style-unsupported/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-unsupported/package.json -------------------------------------------------------------------------------- /test/errors/library-style-unsupported/src/input/input.component.css3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-unsupported/src/input/input.component.css3 -------------------------------------------------------------------------------- /test/errors/library-style-unsupported/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-unsupported/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-style-unsupported/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-style-unsupported/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-template-html-invalid/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-html-invalid/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-template-html-invalid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-html-invalid/.gitignore -------------------------------------------------------------------------------- /test/errors/library-template-html-invalid/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-html-invalid/build.ts -------------------------------------------------------------------------------- /test/errors/library-template-html-invalid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-html-invalid/index.ts -------------------------------------------------------------------------------- /test/errors/library-template-html-invalid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-html-invalid/package.json -------------------------------------------------------------------------------- /test/errors/library-template-html-invalid/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-html-invalid/src/input/input.component.html -------------------------------------------------------------------------------- /test/errors/library-template-html-invalid/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-html-invalid/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-template-html-invalid/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-html-invalid/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-template-missing/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-missing/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-template-missing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-missing/.gitignore -------------------------------------------------------------------------------- /test/errors/library-template-missing/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-missing/build.ts -------------------------------------------------------------------------------- /test/errors/library-template-missing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-missing/index.ts -------------------------------------------------------------------------------- /test/errors/library-template-missing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-missing/package.json -------------------------------------------------------------------------------- /test/errors/library-template-missing/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-missing/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-template-missing/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-missing/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-template-unsupported/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-unsupported/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-template-unsupported/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-unsupported/.gitignore -------------------------------------------------------------------------------- /test/errors/library-template-unsupported/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-unsupported/build.ts -------------------------------------------------------------------------------- /test/errors/library-template-unsupported/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-unsupported/index.ts -------------------------------------------------------------------------------- /test/errors/library-template-unsupported/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-unsupported/package.json -------------------------------------------------------------------------------- /test/errors/library-template-unsupported/src/input/input.component.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-unsupported/src/input/input.component.html5 -------------------------------------------------------------------------------- /test/errors/library-template-unsupported/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-unsupported/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-template-unsupported/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-template-unsupported/src/library.module.ts -------------------------------------------------------------------------------- /test/errors/library-warning-rollup/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-warning-rollup/.angular-package.json -------------------------------------------------------------------------------- /test/errors/library-warning-rollup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-warning-rollup/.gitignore -------------------------------------------------------------------------------- /test/errors/library-warning-rollup/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-warning-rollup/build.ts -------------------------------------------------------------------------------- /test/errors/library-warning-rollup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-warning-rollup/index.ts -------------------------------------------------------------------------------- /test/errors/library-warning-rollup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-warning-rollup/package.json -------------------------------------------------------------------------------- /test/errors/library-warning-rollup/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-warning-rollup/src/input/input.component.html -------------------------------------------------------------------------------- /test/errors/library-warning-rollup/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-warning-rollup/src/input/input.component.scss -------------------------------------------------------------------------------- /test/errors/library-warning-rollup/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-warning-rollup/src/input/input.component.ts -------------------------------------------------------------------------------- /test/errors/library-warning-rollup/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/errors/library-warning-rollup/src/library.module.ts -------------------------------------------------------------------------------- /test/external-resources/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/build.js -------------------------------------------------------------------------------- /test/external-resources/external-resources.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/external-resources.spec.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css-empty/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css-empty/.angular-package.json -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css-empty/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css-empty/.gitignore -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css-empty/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css-empty/build.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css-empty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css-empty/index.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css-empty/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css-empty/package.json -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css-empty/src/input/input.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css-empty/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css-empty/src/input/input.component.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css-empty/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css-empty/src/library.module.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css/.angular-package.json -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css/.gitignore -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css/build.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css/index.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css/package.json -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css/src/input/input.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css/src/input/input.component.css -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css/src/input/input.component.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-css/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-css/src/library.module.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss-empty/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss-empty/.angular-package.json -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss-empty/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss-empty/.gitignore -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss-empty/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss-empty/build.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss-empty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss-empty/index.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss-empty/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss-empty/package.json -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss-empty/src/input/input.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss-empty/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss-empty/src/input/input.component.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss-empty/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss-empty/src/library.module.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss/.angular-package.json -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss/.gitignore -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss/build.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss/index.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss/package.json -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss/src/input/input.component.scss -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss/src/input/input.component.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-style-scss/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-style-scss/src/library.module.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html-empty/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html-empty/.angular-package.json -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html-empty/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html-empty/.gitignore -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html-empty/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html-empty/build.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html-empty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html-empty/index.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html-empty/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html-empty/package.json -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html-empty/src/input/input.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html-empty/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html-empty/src/input/input.component.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html-empty/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html-empty/src/library.module.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html/.angular-package.json -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html/.gitignore -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html/build.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html/index.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html/package.json -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html/src/input/input.component.html -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html/src/input/input.component.ts -------------------------------------------------------------------------------- /test/external-resources/packages/library-template-html/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/external-resources/packages/library-template-html/src/library.module.ts -------------------------------------------------------------------------------- /test/multiple-libraries/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/build.js -------------------------------------------------------------------------------- /test/multiple-libraries/multiple-dependent-libraries.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/multiple-dependent-libraries.spec.ts -------------------------------------------------------------------------------- /test/multiple-libraries/packages/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/build.ts -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-core/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-core/.angular-package.json -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-core/index.ts -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-core/package.json -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-core/src/form-control-registry/form-control-registry.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-core/src/form-control-registry/form-control-registry.service.ts -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-core/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-core/src/library.module.ts -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-tracking/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-tracking/.angular-package.json -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-tracking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-tracking/index.ts -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-tracking/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-tracking/package.json -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-tracking/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-tracking/src/library.module.ts -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-tracking/src/tracking/tracking.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-tracking/src/tracking/tracking.service.ts -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-ui/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-ui/.angular-package.json -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-ui/.gitignore -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-ui/index.ts -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-ui/package.json -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-ui/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-ui/src/input/input.component.html -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-ui/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-ui/src/input/input.component.scss -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-ui/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-ui/src/input/input.component.ts -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-ui/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-ui/src/library.module.ts -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-ui/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-ui/testing/index.ts -------------------------------------------------------------------------------- /test/multiple-libraries/packages/library-ui/testing/input/input.test-utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/library-ui/testing/input/input.test-utility.ts -------------------------------------------------------------------------------- /test/multiple-libraries/packages/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/multiple-libraries/packages/tsconfig.json -------------------------------------------------------------------------------- /test/single-library-custom-paths/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library-custom-paths/build.js -------------------------------------------------------------------------------- /test/single-library-custom-paths/packages/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library-custom-paths/packages/build.ts -------------------------------------------------------------------------------- /test/single-library-custom-paths/packages/library/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library-custom-paths/packages/library/.angular-package.json -------------------------------------------------------------------------------- /test/single-library-custom-paths/packages/library/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library-custom-paths/packages/library/.gitignore -------------------------------------------------------------------------------- /test/single-library-custom-paths/packages/library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library-custom-paths/packages/library/package.json -------------------------------------------------------------------------------- /test/single-library-custom-paths/packages/library/src/components/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library-custom-paths/packages/library/src/components/input/input.component.html -------------------------------------------------------------------------------- /test/single-library-custom-paths/packages/library/src/components/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library-custom-paths/packages/library/src/components/input/input.component.scss -------------------------------------------------------------------------------- /test/single-library-custom-paths/packages/library/src/components/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library-custom-paths/packages/library/src/components/input/input.component.ts -------------------------------------------------------------------------------- /test/single-library-custom-paths/packages/library/src/components/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library-custom-paths/packages/library/src/components/library.module.ts -------------------------------------------------------------------------------- /test/single-library-custom-paths/packages/library/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library-custom-paths/packages/library/src/index.ts -------------------------------------------------------------------------------- /test/single-library-custom-paths/packages/library/src/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library-custom-paths/packages/library/src/testing/index.ts -------------------------------------------------------------------------------- /test/single-library-custom-paths/packages/library/src/testing/input/input.test-utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library-custom-paths/packages/library/src/testing/input/input.test-utility.ts -------------------------------------------------------------------------------- /test/single-library-custom-paths/packages/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library-custom-paths/packages/tsconfig.json -------------------------------------------------------------------------------- /test/single-library-custom-paths/single-library-custom-paths.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library-custom-paths/single-library-custom-paths.spec.ts -------------------------------------------------------------------------------- /test/single-library/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library/build.js -------------------------------------------------------------------------------- /test/single-library/packages/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library/packages/build.ts -------------------------------------------------------------------------------- /test/single-library/packages/library/.angular-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library/packages/library/.angular-package.json -------------------------------------------------------------------------------- /test/single-library/packages/library/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library/packages/library/.gitignore -------------------------------------------------------------------------------- /test/single-library/packages/library/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library/packages/library/index.ts -------------------------------------------------------------------------------- /test/single-library/packages/library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library/packages/library/package.json -------------------------------------------------------------------------------- /test/single-library/packages/library/src/input/input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library/packages/library/src/input/input.component.html -------------------------------------------------------------------------------- /test/single-library/packages/library/src/input/input.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library/packages/library/src/input/input.component.scss -------------------------------------------------------------------------------- /test/single-library/packages/library/src/input/input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library/packages/library/src/input/input.component.ts -------------------------------------------------------------------------------- /test/single-library/packages/library/src/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library/packages/library/src/library.module.ts -------------------------------------------------------------------------------- /test/single-library/packages/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library/packages/tsconfig.json -------------------------------------------------------------------------------- /test/single-library/single-library.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/single-library/single-library.spec.ts -------------------------------------------------------------------------------- /test/utilities/es2015/es2015-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/es2015/es2015-file.ts -------------------------------------------------------------------------------- /test/utilities/es2015/expect-es2015.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/es2015/expect-es2015.ts -------------------------------------------------------------------------------- /test/utilities/es5/es5-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/es5/es5-file.ts -------------------------------------------------------------------------------- /test/utilities/es5/expect-es5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/es5/expect-es5.ts -------------------------------------------------------------------------------- /test/utilities/expect-inline-style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/expect-inline-style.ts -------------------------------------------------------------------------------- /test/utilities/expect-inline-template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/expect-inline-template.ts -------------------------------------------------------------------------------- /test/utilities/expect-package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/expect-package.ts -------------------------------------------------------------------------------- /test/utilities/metadata/expect-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/metadata/expect-metadata.ts -------------------------------------------------------------------------------- /test/utilities/metadata/metadata-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/metadata/metadata-file.ts -------------------------------------------------------------------------------- /test/utilities/package-json/expect-package-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/package-json/expect-package-json.ts -------------------------------------------------------------------------------- /test/utilities/package-json/package-json-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/package-json/package-json-file.ts -------------------------------------------------------------------------------- /test/utilities/simplify-file-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/simplify-file-content.ts -------------------------------------------------------------------------------- /test/utilities/sourcemap/expect-sourcemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/sourcemap/expect-sourcemap.ts -------------------------------------------------------------------------------- /test/utilities/sourcemap/sourcemap-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/sourcemap/sourcemap-file.ts -------------------------------------------------------------------------------- /test/utilities/typings/expect-typings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/typings/expect-typings.ts -------------------------------------------------------------------------------- /test/utilities/typings/typings-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/typings/typings-file.ts -------------------------------------------------------------------------------- /test/utilities/umd/expect-umd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/umd/expect-umd.ts -------------------------------------------------------------------------------- /test/utilities/umd/umd-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/test/utilities/umd/umd-file.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdevdom/angular-package-builder/HEAD/typings.d.ts --------------------------------------------------------------------------------