Skip to content

Instantly share code, notes, and snippets.

View davidpurkiss's full-sized avatar

David Purkiss davidpurkiss

View GitHub Profile
@Vaccano
Vaccano / webpack.config.js
Created May 26, 2016 20:25
Webpack for Aureila
var path = require('path');
var AureliaWebpackPlugin = require('aurelia-webpack-plugin');
var ProvidePlugin = require('webpack/lib/ProvidePlugin');
module.exports = {
resolve: {
extensions: ['', '.js', '.ts'],
alias: {
'breeze': 'breeze-client/build/breeze.debug'
//,'src': path.join(__dirname, 'src')
@charlespockert
charlespockert / compiler.ts
Last active October 20, 2015 07:10
Kendo grid with Aurelia
import {inject, ViewCompiler, ViewResources, Container} from 'aurelia-framework';
/**
* Compiler service
*
* compiles an HTML element with aurelia
*/
@inject(ViewCompiler, ViewResources, Container)
export class Compiler {