Releases: worktile/ngx-planet
Releases · worktile/ngx-planet
17.0.0
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]
}
}
- Support load standalone app #INFR-11810 (#305) (9a750ad), closes #INFR-11810
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
Release 15.0.0
Release 13.0.0
Upgrade Angular to 13
12.1.0
10.0.0
build: release 10.0.0
9.1.0
chore: release 9.1.0
9.0.6
9.0.6
9.0.2
9.0.1-beta.3
chore(relase): 9.0.1-beta.3
9.0.1-beta.2
chore: change app preload debug logs