Skip to content
This repository has been archived by the owner on Jan 21, 2021. It is now read-only.

Commit

Permalink
Recreated project with Aurelia cli 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vuorinem committed Nov 12, 2016
1 parent f29f603 commit 5bd4737
Show file tree
Hide file tree
Showing 9 changed files with 179 additions and 456 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Place your settings in this file to overwrite default and user settings.
{
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "node_modules/typescript/lib",
"html.suggest.angular1": false
}
25 changes: 11 additions & 14 deletions aurelia_project/aurelia.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@
"./typings/**/*.d.ts",
"./custom_typings/**/*.d.ts"
],
"source": "src\\**\\*.ts"
"source": "src/**/*.ts"
},
"markupProcessor": {
"id": "none",
"displayName": "None",
"fileExtension": ".html",
"source": "src\\**\\*.html"
"source": "src/**/*.html"
},
"cssProcessor": {
"id": "sass",
"displayName": "Sass",
"fileExtension": ".scss",
"source": "src\\**\\*.scss"
"source": "src/**/*.scss"
},
"editor": {
"id": "vscode",
Expand All @@ -36,15 +36,15 @@
"unitTestRunner": {
"id": "karma",
"displayName": "Karma",
"source": "test\\unit\\**\\*.ts"
"source": "test/unit/**/*.ts"
},
"paths": {
"root": "src",
"resources": "src\\resources",
"elements": "src\\resources\\elements",
"attributes": "src\\resources\\attributes",
"valueConverters": "src\\resources\\value-converters",
"bindingBehaviors": "src\\resources\\binding-behaviors"
"resources": "src/resources",
"elements": "src/resources/elements",
"attributes": "src/resources/attributes",
"valueConverters": "src/resources/value-converters",
"bindingBehaviors": "src/resources/binding-behaviors"
},
"testFramework": {
"id": "jasmine",
Expand Down Expand Up @@ -90,7 +90,7 @@
"name": "vendor-bundle.js",
"prepend": [
"node_modules/bluebird/js/browser/bluebird.core.js",
"scripts/require.js"
"node_modules/requirejs/require.js"
],
"dependencies": [
"aurelia-binding",
Expand All @@ -114,10 +114,7 @@
"aurelia-task-queue",
"aurelia-templating",
"aurelia-templating-binding",
{
"name": "text",
"path": "../scripts/text"
},
"text",
{
"name": "aurelia-templating-resources",
"path": "../node_modules/aurelia-templating-resources/dist/amd",
Expand Down
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Aurelia</title>
</head>

Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@
"license": "MIT",
"dependencies": {
"aurelia-bootstrapper": "^1.0.0",
"aurelia-fetch-client": "^1.0.0",
"aurelia-animator-css": "^1.0.0",
"bluebird": "^3.4.1"
"bluebird": "^3.4.1",
"requirejs": "^2.3.2",
"text": "github:requirejs/text#latest"
},
"peerDependencies": {},
"devDependencies": {
"aurelia-cli": "^0.21.0",
"aurelia-cli": "^0.22.0",
"aurelia-testing": "^1.0.0-beta.2.0.0",
"aurelia-tools": "^0.2.2",
"browser-sync": "^2.13.0",
Expand Down
36 changes: 0 additions & 36 deletions scripts/require.js

This file was deleted.

Loading

0 comments on commit 5bd4737

Please sign in to comment.