Comparing version 0.5.2 to 0.5.3
{ | ||
"name": "nuekit", | ||
"version": "0.5.2", | ||
"version": "0.5.3", | ||
"description": "The closer-to-standards web framework. Build sites and apps with less effort.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://nuejs.org", |
@@ -42,3 +42,3 @@ | ||
<a href="https://nuejs.org/blog/perfect-web-framework/#product-roadmap"> | ||
<img src="https://nuejs.org/img/roadmap4-big.png" width="800"></a> | ||
<img src="https://nuejs.org/img/roadmap6-big.png" width="800"></a> | ||
@@ -45,0 +45,0 @@ ### Contributing |
@@ -277,3 +277,3 @@ | ||
// build all / given matches | ||
async function build(matches, dryrun) { | ||
async function build(matches=[], dryrun) { | ||
const begin = Date.now() | ||
@@ -280,0 +280,0 @@ log('Building site to:', colors.cyan(dist)) |
@@ -43,7 +43,2 @@ | ||
function fmt(size) { | ||
return !size ? '-' : Math.round(size / 100) / 10 + 'k' | ||
} | ||
export function categorize(paths) { | ||
@@ -50,0 +45,0 @@ const cats = { style: [], scripts: [], islands: [], pages: [], media: [], spa: [] } |
@@ -317,1 +317,12 @@ | ||
test('the project was started for the first time', async () => { | ||
const kit = await getKit() | ||
await write('globals/bar.css') | ||
await write('home.css') | ||
await write('index.md') | ||
await kit.serve() | ||
const html = await readDist(kit.dist, 'index.html') | ||
expect(html).toInclude('hotreload.js') | ||
process.exit() | ||
}) |
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
83364
1968