Skip to content

Instantly share code, notes, and snippets.

View vuorinem's full-sized avatar
🖤

Mikko Vuorinen vuorinem

🖤
View GitHub Profile
@vuorinem
vuorinem / DotNetCoreCLI log.txt
Created July 6, 2019 22:41
AureliaAzurePipelines - Webpack sourcemaps error
EXEC : error : original.line and original.column are not numbers -- you probably meant to omit the original mapping entirely and only map the generated position. If so, pass null for the original mapping instead of an object with empty or null values. [/home/vsts/work/1/s/project.csproj]
at SourceMapGenerator_validateMapping [as _validateMapping] (/home/vsts/work/1/s/node_modules/source-map/lib/source-map-generator.js:276:15)
at SourceMapGenerator_addMapping [as addMapping] (/home/vsts/work/1/s/node_modules/source-map/lib/source-map-generator.js:110:12)
at /home/vsts/work/1/s/node_modules/source-map/lib/source-map-generator.js:72:17
at Array.forEach (<anonymous>)
at BasicSourceMapConsumer.SourceMapConsumer_eachMapping [as eachMapping] (/home/vsts/work/1/s/node_modules/source-map/lib/source-map-consumer.js:157:14)
at Function.SourceMapGenerator_fromSourceMap [as fromSourceMap] (/home/vsts/work/1/s/node_modules/source-map/lib/source-map-generator.js:48:24)
at SourceMapS
@vuorinem
vuorinem / DotNetCoreCLI log.txt
Created July 6, 2019 21:32
AureliAzurePipelines - Publishing error
error MSB3030: Could not copy the file "wwwroot/dist/app~d0ae3f07.9ab63cec2c513604984f.chunk.js" because it was not found.
error MSB3030: Could not copy the file "wwwroot/dist/vendor.aurelia-binding~4157a4ee.9ab63cec2c513604984f.chunk.js" because it was not found.
error MSB3030: Could not copy the file "wwwroot/dist/runtime~app.9ab63cec2c513604984f.bundle.js" because it was not found.
##[error]Error: The process '/opt/hostedtoolcache/dncs/2.2.300/x64/dotnet' failed with exit code 1
@vuorinem
vuorinem / app.html
Last active May 3, 2017 12:21
Aurelia Gist
<template>
<h1>App View</h1>
<p>
<a route-href="route: child">Child</a>
</p>
<router-view></route-view>
</template>
@vuorinem
vuorinem / app.html
Last active August 10, 2017 14:01 — forked from jdanyow/app.html
Aurelia Gist
<template>
<p test="First paragraph">a</p>
<p test="Second paragraph: testing? no.">a</p>
</template>
@vuorinem
vuorinem / app.html
Created May 4, 2016 16:51
Aurelia - Sortable
<template>
<require from="./node"></require>
<!-- Works if using view-only (from="./node.html") -->
<node nodes.bind="nodes"></node>
</template>
@vuorinem
vuorinem / app.html
Created March 3, 2016 13:23 — forked from jdanyow/app.html
Aurelia - InnerHTML binding
<template>
<p innerhtml.bind="inner"></p>
</template>