generator-angular2-library icon indicating copy to clipboard operation
generator-angular2-library copied to clipboard

Yeoman generator to create an Angular library

Results 84 generator-angular2-library issues
Sort by recently updated
recently updated
newest added

Sometimes a library project may contain stylesheets like master theme files or default reference styles that can be imported by a consuming project. Currently the build process seems to only...

Type: Enhancement
Status: On Hold

I have two libraries "drafting-common" & "drafting-services" built using angular-4 and bundled with Rollup in two formats = es,umd I am using them in angular-cli project by packing the libraries...

Reading this blog post today https://blog.angular.io/the-past-present-and-future-of-the-angular-cli-13cf55e455f8 Angular cli project is getting interested on scaffolding modules, I think there could be an opportunity to collaborate with angular cli directly to integrate...

Status: On Hold

since angular-cli 1.6.0 I get the following error: Thing is I don't really know if it's an angular-cli problem. it was working a few days ago without any change. Out...

I am attempting to upgrade my projects to Angular 5 and Material 5rc1. With Angular 4 and Material Beta versions, everything worked fine. My setup is like this (all NPM...

It gives me this error ``` rahul@Rahul-PC:~/Angular/test-module$ npm publish dist npm ERR! publish Failed PUT 403 npm ERR! Linux 4.10.0-35-generic npm ERR! argv "/home/rahul/.nvm/versions/node/v7.9.0/bin/node" "/home/rahul/.nvm/versions/node/v7.9.0/bin/npm" "publish" "dist" npm ERR! node...

Do you think that your generator could actually use this library for all of the lib generation? https://github.com/dherges/ng-packagr

Status: On Hold

I updated the packages from this lib to the new version of Angular 5, but consuming the library in an application generates the following error. `Unexpected value 'SampleModule' imported by...

I successfully create a npm angular module using the generator, however: - I imported the module I created in an NG app - Component is loaded successfully, but a *ngFor...

Components with _commented-out templateUrl_ still throw a build error. For example, from this simple component @Component({ selector: 'common-html-entry', // templateUrl: 'common-html-entry.html', template: ` ` }) export class CommonHtmlEntryComponent { ......