Skip to content

Commit 40c56df

Browse files
committed
Updated to latest angular cli
1 parent 75f8049 commit 40c56df

File tree

12 files changed

+47
-35
lines changed

12 files changed

+47
-35
lines changed

angular-cli.json

Lines changed: 40 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,43 @@
11
{
2-
"project": {
3-
"version": "1.0.0-beta.11-webpack.2",
4-
"name": "ng2-semantic-ui"
5-
},
6-
"apps": [
7-
{
8-
"main": "demo/main.ts",
9-
"tsconfig": "demo/tsconfig.json",
10-
"mobile": false
11-
}
12-
],
13-
"addons": [],
14-
"packages": [],
15-
"e2e": {
16-
"protractor": {
17-
"config": "demo/config/protractor.conf.js"
18-
}
19-
},
20-
"test": {
21-
"karma": {
22-
"config": "demo/config/karma.conf.js"
23-
}
24-
},
25-
"defaults": {
26-
"prefix": "demo",
27-
"sourceDir": "demo",
28-
"styleExt": "css",
29-
"prefixInterfaces": false,
30-
"lazyRoutePrefix": "+"
2+
"project": {
3+
"version": "1.0.0-beta.11-webpack.8",
4+
"name": "ng2-semantic-ui"
5+
},
6+
"apps": [
7+
{
8+
"root": "demo",
9+
"outDir": "dist",
10+
"assets": "assets",
11+
"index": "index.html",
12+
"main": "main.ts",
13+
"test": "test.ts",
14+
"tsconfig": "tsconfig.json",
15+
"prefix": "app",
16+
"mobile": false,
17+
"styles": [],
18+
"scripts": [],
19+
"environments": {
20+
"source": "environments/environment.ts",
21+
"prod": "environments/environment.prod.ts",
22+
"dev": "environments/environment.dev.ts"
23+
}
3124
}
25+
],
26+
"addons": [],
27+
"packages": [],
28+
"e2e": {
29+
"protractor": {
30+
"config": "./protractor.conf.js"
31+
}
32+
},
33+
"test": {
34+
"karma": {
35+
"config": "./karma.conf.js"
36+
}
37+
},
38+
"defaults": {
39+
"styleExt": "css",
40+
"prefixInterfaces": false,
41+
"lazyRoutePrefix": "+"
42+
}
3243
}

demo/app/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export * from './environments/environment';
1+
export * from '../environments/environment';
22
export * from './app.component';
33
export * from './app.module';
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

demo/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<head>
44
<title>ng2-semantic-ui - Semantic UI Angular 2 Integrations</title>
55

6-
<base href="/">
6+
<base href="/ng2-semantic-ui/">
77

8-
<link rel="icon" sizes="16x16" type="image/x-icon" href="/favicon.ico">
8+
<link rel="icon" sizes="16x16" type="image/x-icon" href="/assets/favicon.ico">
99

1010
<meta charset="utf-8">
1111
<meta http-equiv="X-UA-Compatible" content="IE=edge">
@@ -19,8 +19,8 @@
1919
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.5.1/components/prism-markup.min.js"></script>
2020
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.5.1/components/prism-typescript.min.js"></script>
2121

22-
<link rel="stylesheet" href="/css/code.css">
23-
<link rel="stylesheet" href="/css/style.css">
22+
<link rel="stylesheet" href="/assets/css/code.css">
23+
<link rel="stylesheet" href="/assets/css/style.css">
2424
</head>
2525
<body>
2626
<demo-root>

0 commit comments

Comments
 (0)