mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
* Switches away from the ESM-incompatible & unmaintained `ts_devserver` to `http_server`. This is the canonical server maintained by dev-infra * Switches tests away from CommonJS specific logic. e.g. require.resolve * Adjusts tests to work with Protractor spec bundling (Protractor does not support ESM execution, but we want to take ESM-written specs) * Reworks playground and benchmarks to use `app_bundle` and `esbuild` instead of loading hundreds of files individually. This also makes tests more stable and more aligned with real applications. PR Close #48521
21 lines
486 B
HTML
21 lines
486 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<title>Animation Example</title>
|
|
<link rel="stylesheet" type="text/css" href="./css/animate-app.css" />
|
|
<style>
|
|
animate-app {
|
|
display: block;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
padding: 50px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<animate-app>Loading...</animate-app>
|
|
</body>
|
|
<script src="/angular/packages/zone.js/bundles/zone.umd.js"></script>
|
|
<script src="/app_bundle.js"></script>
|
|
</html>
|