Note: This guide applies to the project created by quasar-cli.
First install typescript
and ts-loader
packages in your project.
npm i -D typescript ts-loader
Then modified the quasar.conf.js
file in your project:
// unofficial sqlite3 types. | |
// These are typed only for my scope | |
declare module "@sqlite.org/sqlite-wasm" { | |
type InitOptions = { | |
print: (...msg: any[]) => void; | |
printErr: (...msg: any[]) => void; | |
}; | |
declare type PreparedStatement = { |
Note: This guide applies to the project created by quasar-cli.
First install typescript
and ts-loader
packages in your project.
npm i -D typescript ts-loader
Then modified the quasar.conf.js
file in your project:
<!doctype html> | |
<html><head><script src="app.js"></script></head><body></body></html> |
I recently started a new project and we used [Angular CLI][4] to get started. Angular CLI, as in the name, is a command line utility for creating and managing Angular 2 projects. Using Angular CLI to create a project is very easy and it gives you a great starting point for new Angular 2 projects. The only draw back I found was that in my mind it wasn't CI ready.
Angular CLI out of the box gives you a few unit tests and an end to end (e2e) test. This is great because you can generate a project and set up your build server to build the artefacts. This is where I ran into problems.
Having everything generated for you is great until something you want to do does not work; and this is where I was. I wanted to build and test my angular application on a headless build agent. The generated code from Angular CLI runs tests using Google Chrome by default. Which is fine, but running Google Chrome on a bui
#!/bin/bash | |
url="https://gist.githubusercontent.com/RichardBronosky/2d04c7c2e9a5bea67cd9760a35415a3f/raw/install_mongo.sh" | |
script="/tmp/userdata.sh" | |
echo "Running userdata script as $(whoami) from $(pwd)" | |
# Log commands to stdout and vicariously /var/log/cloud-init-output.log | |
set -o xtrace | |
# Exit on error |
gulp.task('build', gulpsync.sync(['unlock', 'compress']), function () { | |
var endpoint = '/apps/' + config.phoneGap.appId; | |
var env = config.ensure.environment(argv.env, argv.debugmode); | |
pgBuild.auth({ token: config.phoneGap.authToken }, function (e, api) { | |
gulp.src('tmp/*.zip').pipe(tap(function (file, t) { | |
var options = { | |
form: { | |
data: { |
#!/usr/bin/env node | |
/** | |
* Module dependencies | |
*/ | |
var Async = require('async'); | |
var Filesystem = require('machinepack-fs'); | |
var Prompts = require('machinepack-prompts'); | |
var Sails = require('sails').Sails; |
var express = require('express'); | |
var cookieParser = require('cookie-parser'); | |
var session = require('express-session'); | |
var flash = require('express-flash'); | |
var handlebars = require('express-handlebars') | |
var app = express(); | |
var sessionStore = new session.MemoryStore; | |
// View Engines |
var dotenv = require('dotenv'); | |
dotenv.load(); | |
var Hapi = require('hapi'); | |
var _ = require('lodash'); | |
var jwt = require('jsonwebtoken'); | |
var Joi = require('joi'); | |
var PORT = process.env.PORT || 8001; | |
process.env.SHARED_SECRET = 'Change me in an env file'; |