@lightningjs/create-blits
Advanced tools
Comparing version 1.0.0 to 1.1.0
@@ -10,4 +10,4 @@ import Blits from '@lightningjs/blits' | ||
</Element> | ||
`, | ||
`, | ||
routes: [{ path: '/', component: Home }], | ||
}) |
@@ -11,6 +11,64 @@ import Blits from '@lightningjs/blits' | ||
<Element w="1920" h="1080" color="#1e293b"> | ||
<Element src="assets/logo.png" w="200" h="200" x="860" y="320" :effects="[$shader('radius', {radius: 12})]" /> | ||
<Loader x="880" y="600" /> | ||
<Element :y.transition="$y"> | ||
<Element | ||
src="assets/logo.png" | ||
w="200" | ||
h="200" | ||
:scale.transition="{value: $scale, duration: 500}" | ||
:rotation.transition="{value: $rotation, duration: 800}" | ||
:x.transition="{value: $x, delay: 200, duration: 1200, easing: 'cubic-bezier(1,-0.64,.39,1.44)'}" | ||
mount="{x: 0.5}" | ||
y="320" | ||
:effects="[$shader('radius', {radius: 8})]" | ||
/> | ||
<Loader :x="1920 / 2" mount="{x: 0.5}" y="600" w="160" :alpha.transition="$loaderAlpha" /> | ||
<Element y="600" :alpha.transition="$textAlpha"> | ||
<Text size="80" align="center" wordwrap="1920">Hello!</Text> | ||
<Text | ||
size="50" | ||
align="center" | ||
y="120" | ||
:x="1920/2" | ||
wordwrap="500" | ||
lineheight="64" | ||
mount="{x: 0.5}" | ||
color="#ffffffaa" | ||
content="Let's get started with Lightning 3 & Blits" | ||
/> | ||
</Element> | ||
</Element> | ||
</Element> | ||
`, | ||
state() { | ||
return { | ||
y: 0, | ||
x: -1000, | ||
rotation: 0, | ||
scale: 1, | ||
loaderAlpha: 0, | ||
textAlpha: 0.00001, | ||
} | ||
}, | ||
hooks: { | ||
ready() { | ||
this.loaderAlpha = 1 | ||
this.x = 1920 / 2 | ||
this.$setTimeout(() => { | ||
this.rotation = 720 | ||
this.scale = 1.5 | ||
}, 3000) | ||
this.$setTimeout(() => { | ||
this.scale = 1 | ||
}, 3000 + 300) | ||
this.$setTimeout(() => { | ||
this.y = -60 | ||
this.loaderAlpha = 0 | ||
this.scale = 1 | ||
this.textAlpha = 1 | ||
}, 3800) | ||
}, | ||
}, | ||
}) |
{ | ||
"name": "@lightningjs/create-blits", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "Create a new Lightning 3 Blits App", | ||
@@ -5,0 +5,0 @@ "bin": "bin/index.js", |
@@ -27,2 +27,13 @@ import { green, bold, red } from 'kolorist' | ||
// Copy readme | ||
fs.copyFileSync( | ||
path.join(config.fixturesBase, 'common/README.md'), | ||
path.join(targetDir, 'README.md') | ||
) | ||
// Copy IDE stuff from fixture base | ||
fs.cpSync(path.join(config.fixturesBase, 'common/ide'), path.join(targetDir), { | ||
recursive: true, | ||
}) | ||
resolve(targetDir) | ||
@@ -59,7 +70,2 @@ }) | ||
// Copy IDE stuff from fixture base | ||
fs.cpSync(path.join(config.fixturesBase, 'common/ide'), path.join(config.targetDir), { | ||
recursive: true, | ||
}) | ||
// Copy and merge fixture specific package.json | ||
@@ -82,4 +88,4 @@ const origPackageJson = JSON.parse(fs.readFileSync(path.join(config.targetDir, 'package.json'))) | ||
...(origPackageJson.scripts || {}), | ||
...(eslintPackageJson.scripts || {}) | ||
} | ||
...(eslintPackageJson.scripts || {}), | ||
}, | ||
}, | ||
@@ -86,0 +92,0 @@ null, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
406228
37
669