New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

angular-rollup

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-rollup - npm Package Versions

1234

1.0.0-beta.6

Diff

Changelog

Source

1.0.0-beta.6

  • Use ngr update --angularVersion to update your package.json to a specific version of @angular
  • New and improved Module generation. --include flag can be configured to auto import Component, Directive, Routes into the Module.

EXAMPLE:


ngr generate module --include component,route,spec,e2e --dir src/app/shared/components/my-module --name my-module

  • Fixed issues at startup by pushing serve command to end of script during build
  • Optimized default library files copied at start of build scripts
  • Deprecated dependency on angular-srcs
  • Bumped default version of scaffolded app to @angular 4.4.2
  • Fixed issue with --serve flag when building for dev in --jit mode
  • Updated README to latest

COMING SOON FOR 1.0.0-beta

  • Reduced configuration of lazyload build
  • Wizard for generating modules
  • Better user feedback during Closure Compiler bundling

steveblue
published 1.0.0-beta.5 •

steveblue
published 1.0.0-beta.4 •

Changelog

Source

1.0.0-beta.4

  • Hotfix TypeScript compilation onchange when using ngr build dev --jit

steveblue
published 1.0.0-beta.3 •

Changelog

Source

1.0.0-beta.3

  • Hotfix for global css that would not compile correctly

steveblue
published 1.0.0-beta.2 •

Changelog

Source

1.0.0-beta.2

  • Refactored SASS / PostCSS build steps, removed duplicate code
  • Added config for the libsass compiler
  • Added support for multiple global CSS files in the src/style directory to be deployed to /build or /dist
  • Deprecated config.globalCSSFilename property

The build will default to the following configuration for SASS if you do not provide one:

{
    includePaths: ['src/style/'],
    outputStyle: 'expanded',
    sourceComments: false
}

Configure SASS in build.config.js for each build like in the following example. The configuration takes any options node-sass can be configured with, except file and outFile which is handled by the build scripts.

style: {
        sass: {
            dev: {
                includePaths: ['src/style/'],
                outputStyle: 'expanded',
                sourceComments: true
            },
            lib: {
                includePaths: ['src/style/'],
                outputStyle: 'expanded',
                sourceComments: false
            },
            prod: {
                includePaths: ['src/style/'],
                outputStyle: 'expanded',
                sourceComments: false
            }
        }
    }


steveblue
published 1.0.0-beta.1 •

Changelog

Source

1.0.0-beta.1

  • Bypass Rollup and build for production with ClosureCompiler in ADVANCED_OPTIMIZATIONS mode
  • EXPERIMENTAL Support for lazyloading routes with ClosureCompiler, requires additional high level API coming soon
  • Bugfixes and improvements for existing builds

NOTE: While in BETA this package is EXPERIMENTAL

Closure builds are only available for < 5.0.0 at the moment.

To build for production with ClosureCompiler use the following flags:

ngr build prod --closure

To build for production with support for lazyloaded routes:

ngr build prod --closure --lazy


steveblue
published 1.0.0-beta.0 •

Changelog

Source

1.0.0-beta.0

  • Updated npm package name to angular-rollup, angular2-rollup is deprecated
  • Cross platform support including MacOS, Windows and Linux for the CLI
  • Updated CLI to support @angular 5.0.0+
  • ngr build dev --watch will trigger ngc in --watch mode
  • ngr build jit triggers JIT build, use for @angular 4.0.0 development
  • Backwards compatible to 4.0.0 with minor adjustments to config, 2.0.0 by downgrading @angular boilerplate

NOTE: While in BETA this package is EXPERIMENTAL

If you want to build an app with this project now it is recommended you use the angular2-rollup npm package instead. Minimal changes will be required to upgrade to angular-rollup.

npm install angular2-rollup@4.4.0-RC.0


SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc