Skip to content

Commit c3c1565

Browse files
committed
update aurelia to 1.0.7
1 parent d0de81b commit c3c1565

File tree

12 files changed

+271
-242
lines changed

12 files changed

+271
-242
lines changed

aurelia-v1.0.3/package.json

Lines changed: 0 additions & 73 deletions
This file was deleted.

aurelia-v1.0.3/webpack.config.js

Lines changed: 0 additions & 164 deletions
This file was deleted.

aurelia-v1.0.7/.babelrc

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"env": {
3+
"webpack": {
4+
"plugins": [
5+
"transform-decorators-legacy",
6+
"transform-class-properties"
7+
],
8+
"presets": [
9+
[
10+
"env",
11+
{
12+
"targets": {
13+
"browsers": [
14+
"last 2 versions",
15+
"not ie <= 11"
16+
]
17+
},
18+
"loose": true,
19+
"modules": false
20+
}
21+
]
22+
]
23+
},
24+
"e2e": {
25+
"plugins": [
26+
"transform-decorators-legacy",
27+
"transform-class-properties"
28+
],
29+
"presets": [
30+
[
31+
"env",
32+
{
33+
"targets": {
34+
"browsers": [
35+
"last 2 versions",
36+
"not ie <= 11"
37+
]
38+
},
39+
"loose": true,
40+
"modules": "commonjs"
41+
}
42+
]
43+
]
44+
},
45+
"node": {
46+
"presets": [
47+
[
48+
"env",
49+
{
50+
"targets": {
51+
"node": 4
52+
},
53+
"loose": true,
54+
"modules": "commonjs"
55+
}
56+
]
57+
]
58+
}
59+
}
60+
}

aurelia-v1.0.7/favicon.ico

318 Bytes
Binary file not shown.

aurelia-v1.0.3/index.html renamed to aurelia-v1.0.7/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Aurelia v1.0.3</title>
4+
<title>Aurelia v1.0.7</title>
55
<meta charset="UTF-8">
66
<link href="../../css/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/>
77
<link rel="stylesheet" href="../../css/main.css">
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"compilerOptions": {
33
"target": "es2015",
4+
"lib": ["es2017", "dom"],
45
"experimentalDecorators": true
56
},
67
"exclude": [
78
"node_modules",
8-
"dist",
9-
"release"
9+
"dist"
1010
]
11-
}
11+
}

0 commit comments

Comments
 (0)