Skip to content

Releases: worktile/ngx-planet

17.0.0

18 Mar 09:01
Compare
Choose a tag to compare

Features

  • Add entry config instead of manifest, scripts, styles and resourcePathPrefix, support string and object type ({ manifest: string; scripts: string[], styles: string[], basePath: string })
  • Support set index.html for entry instead of manifest, scripts, styles and resourcePathPrefix, planet will parse scripts and styles from html text (#308) (0670411)
{
 entry: "http://127.0.0.1:3001/index.html" 
}

or

{
 entry: {
  manifest: "http://127.0.0.1:3001/index.html" // or "http://127.0.0.1:3001/assets-manifest.json"
  scripts: ["main.js"],
  styles: ["main.css]
 }
}
defineApplication('standalone-app', {
    template: `<standalone-app-root></standalone-app-root>`,
    bootstrap: (portalApp: PlanetPortalApplication) => {
        return bootstrapApplication(AppRootComponent, {
            providers: [
                {
                    provide: PlanetPortalApplication,
                    useValue: portalApp
                }
            ]
        }).catch(error => {
            console.error(error);
            return null;
        });
    }
});

Release 15.0.0

09 Mar 07:23
Compare
Choose a tag to compare

Release 15.0.0

Release 13.0.0

16 May 12:12
Compare
Choose a tag to compare

Upgrade Angular to 13

12.1.0

21 Oct 08:10
Compare
Choose a tag to compare

Bug Fixes

  • update peerDependencies to 12.0.0 (4ff9f6d)

Features

10.0.0

20 May 02:14
Compare
Choose a tag to compare
build: release 10.0.0

9.1.0

28 Dec 03:58
Compare
Choose a tag to compare
chore: release 9.1.0

9.0.6

18 Dec 05:14
Compare
Choose a tag to compare

9.0.6

9.0.2

10 Dec 07:50
Compare
Choose a tag to compare

All notable changes to ngx-planet will be documented in this file.

9.0.2 (2020-12-10)

Bug Fixes

  • application-loader: remove debug logs, fix preload app load component (#153) (24413e6)

9.0.1-beta.3

10 Dec 02:20
Compare
Choose a tag to compare
chore(relase): 9.0.1-beta.3

9.0.1-beta.2

09 Dec 09:38
Compare
Choose a tag to compare
chore: change app preload debug logs