diff --git a/Nodejs/Product/Nodejs/FileTemplates/NewItem/EmptyStyl.styl b/Nodejs/Product/Nodejs/FileTemplates/NewItem/EmptyStyl.styl
deleted file mode 100644
index 5f282702b..000000000
--- a/Nodejs/Product/Nodejs/FileTemplates/NewItem/EmptyStyl.styl
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/FileTemplates/NewItem/NewItems.vsdir b/Nodejs/Product/Nodejs/FileTemplates/NewItem/NewItems.vsdir
index 1f8684374..20fe6ec16 100644
--- a/Nodejs/Product/Nodejs/FileTemplates/NewItem/NewItems.vsdir
+++ b/Nodejs/Product/Nodejs/FileTemplates/NewItem/NewItems.vsdir
@@ -4,7 +4,6 @@ EmptyHtml.html|{FE8A8C3D-328A-476D-99F9-2A24B75F8C7F}|#3032|400|#3033|0|#415|0|#
EmptyCss.css|{FE8A8C3D-328A-476D-99F9-2A24B75F8C7F}|#3029|410|#3030|0|#414|0|#3031
EmptyJson.json|{FE8A8C3D-328A-476D-99F9-2A24B75F8C7F}|#3023|420|#3024|0|0|0|#3025
EmptyJade.jade|{FE8A8C3D-328A-476D-99F9-2A24B75F8C7F}|#3020|430|#3021|0|#417|0|#3022
-EmptyStyl.styl|{FE8A8C3D-328A-476D-99F9-2A24B75F8C7F}|#3026|440|#3027|0|#418|0|#3028
EmptyLess.less|{FE8A8C3D-328A-476D-99F9-2A24B75F8C7F}|#3038|450|#3039|0|0|0|#3040
EmptyXml.xml|{FE8A8C3D-328A-476D-99F9-2A24B75F8C7F}|#3035|490|#3036|0|#416|0|#3037
TextFile.txt|{DA9FB551-C724-11d0-AE1F-00A0C90FFFC3}|#13411|500|#13412|0|#6810|0|#13413
diff --git a/Nodejs/Product/Nodejs/Nodejs.csproj b/Nodejs/Product/Nodejs/Nodejs.csproj
index 4a63ef5a4..4d15aea05 100644
--- a/Nodejs/Product/Nodejs/Nodejs.csproj
+++ b/Nodejs/Product/Nodejs/Nodejs.csproj
@@ -727,7 +727,7 @@
-
+
@@ -751,14 +751,14 @@
-
+
-
+
@@ -1018,7 +1018,7 @@
-
+
true
PreserveNewest
@@ -1027,10 +1027,6 @@
true
PreserveNewest
-
- true
- PreserveNewest
-
true
PreserveNewest
@@ -1062,7 +1058,7 @@
-
+
@@ -1207,14 +1203,11 @@
-
-
-
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/ExpressApp.njsproj b/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/ExpressApp.njsproj
index 8b3186a17..a8ad4439b 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/ExpressApp.njsproj
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/ExpressApp.njsproj
@@ -33,7 +33,7 @@
-
+
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/app.js b/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/app.js
index 699b86361..51427f4a1 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/app.js
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/app.js
@@ -20,7 +20,6 @@ app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
-app.use(require('stylus').middleware(path.join(__dirname, 'public')));
app.use(express.static(path.join(__dirname, 'public')));
app.use('/', routes);
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/layout.jade b/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/layout.jade
index caf3aaeb5..7a3e9f509 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/layout.jade
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/layout.jade
@@ -2,6 +2,6 @@
html
head
title= title
- link(rel='stylesheet', href='/stylesheets/style.css')
+ link(rel='stylesheet', href='/stylesheets/main.css')
body
block content
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/main.css b/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/main.css
new file mode 100644
index 000000000..4cd40111d
--- /dev/null
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/main.css
@@ -0,0 +1,8 @@
+body {
+ padding: 50px;
+ font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
+}
+
+a {
+ color: #00B7FF;
+}
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/package.json b/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/package.json
index 7f47d19c9..107c380d5 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/package.json
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/package.json
@@ -16,7 +16,6 @@
"morgan": "~1.3.0",
"serve-favicon": "~2.1.3",
"debug": "~2.0.0",
- "jade": "~1.6.0",
- "stylus": "0.42.3"
+ "jade": "~1.6.0"
}
}
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/typings.json b/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/typings.json
index 333cbfc52..9f690eea9 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/typings.json
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/typings.json
@@ -9,7 +9,6 @@
"mime": "registry:dt/mime#0.0.0+20160316155526",
"morgan": "registry:dt/morgan#1.7.0+20160524142355",
"serve-favicon": "registry:dt/serve-favicon#0.0.0+20160316155526",
- "serve-static": "registry:dt/serve-static#0.0.0+20160606155157",
- "stylus": "registry:dt/stylus#0.0.0+20160317120654"
+ "serve-static": "registry:dt/serve-static#0.0.0+20160606155157"
}
}
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/ExpressApp.njsproj b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/ExpressApp.njsproj
index c29ed30e2..7b432d87b 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/ExpressApp.njsproj
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/ExpressApp.njsproj
@@ -33,7 +33,7 @@
-
+
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/ExpressApp.vstemplate b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/ExpressApp.vstemplate
index b903f04ff..76dee2b8e 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/ExpressApp.vstemplate
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/ExpressApp.vstemplate
@@ -19,7 +19,7 @@
- style.styl
+ main.css
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/app.js b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/app.js
index 699b86361..51427f4a1 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/app.js
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/app.js
@@ -20,7 +20,6 @@ app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
-app.use(require('stylus').middleware(path.join(__dirname, 'public')));
app.use(express.static(path.join(__dirname, 'public')));
app.use('/', routes);
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/layout.jade b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/layout.jade
index caf3aaeb5..7a3e9f509 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/layout.jade
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/layout.jade
@@ -2,6 +2,6 @@
html
head
title= title
- link(rel='stylesheet', href='/stylesheets/style.css')
+ link(rel='stylesheet', href='/stylesheets/main.css')
body
block content
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/main.css b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/main.css
new file mode 100644
index 000000000..4cd40111d
--- /dev/null
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/main.css
@@ -0,0 +1,8 @@
+body {
+ padding: 50px;
+ font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
+}
+
+a {
+ color: #00B7FF;
+}
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/package.json b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/package.json
index 7f47d19c9..107c380d5 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/package.json
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/package.json
@@ -16,7 +16,6 @@
"morgan": "~1.3.0",
"serve-favicon": "~2.1.3",
"debug": "~2.0.0",
- "jade": "~1.6.0",
- "stylus": "0.42.3"
+ "jade": "~1.6.0"
}
}
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/style.styl b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/style.styl
deleted file mode 100644
index 7010b10dd..000000000
--- a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/style.styl
+++ /dev/null
@@ -1,5 +0,0 @@
-body
- padding: 50px
- font: 14px "Lucida Grande", Helvetica, Arial, sans-serif
-a
- color: #00B7FF
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/typings.json b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/typings.json
index 333cbfc52..9f690eea9 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/typings.json
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/Express4App/typings.json
@@ -9,7 +9,6 @@
"mime": "registry:dt/mime#0.0.0+20160316155526",
"morgan": "registry:dt/morgan#1.7.0+20160524142355",
"serve-favicon": "registry:dt/serve-favicon#0.0.0+20160316155526",
- "serve-static": "registry:dt/serve-static#0.0.0+20160606155157",
- "stylus": "registry:dt/stylus#0.0.0+20160317120654"
+ "serve-static": "registry:dt/serve-static#0.0.0+20160606155157"
}
}
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/TypeScriptExpressApp.njsproj b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/TypeScriptExpressApp.njsproj
index 79577121b..0452fd1c2 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/TypeScriptExpressApp.njsproj
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/TypeScriptExpressApp.njsproj
@@ -35,9 +35,8 @@
-
-
+
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/TypeScriptExpressApp.vstemplate b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/TypeScriptExpressApp.vstemplate
index fdff1e3a5..a70215898 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/TypeScriptExpressApp.vstemplate
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/TypeScriptExpressApp.vstemplate
@@ -35,9 +35,6 @@
express.d.ts
-
- stylus.d.ts
-
app.ts
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/app.ts b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/app.ts
index ced295466..51418c59a 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/app.ts
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/app.ts
@@ -17,8 +17,6 @@ app.use(express.urlencoded());
app.use(express.methodOverride());
app.use(app.router);
-import stylus = require('stylus');
-app.use(stylus.middleware(path.join(__dirname, 'public')));
app.use(express.static(path.join(__dirname, 'public')));
// development only
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/layout.jade b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/layout.jade
index caf3aaeb5..7a3e9f509 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/layout.jade
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/layout.jade
@@ -2,6 +2,6 @@
html
head
title= title
- link(rel='stylesheet', href='/stylesheets/style.css')
+ link(rel='stylesheet', href='/stylesheets/main.css')
body
block content
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/main.css b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/main.css
new file mode 100644
index 000000000..4cd40111d
--- /dev/null
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/main.css
@@ -0,0 +1,8 @@
+body {
+ padding: 50px;
+ font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
+}
+
+a {
+ color: #00B7FF;
+}
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/package.json b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/package.json
index da7f16366..b00693d24 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/package.json
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/package.json
@@ -8,7 +8,6 @@
},
"dependencies": {
"express": "3.4.4",
- "jade": "*",
- "stylus": "*"
+ "jade": "*"
}
}
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/style.styl b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/style.styl
deleted file mode 100644
index 7010b10dd..000000000
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/style.styl
+++ /dev/null
@@ -1,5 +0,0 @@
-body
- padding: 50px
- font: 14px "Lucida Grande", Helvetica, Arial, sans-serif
-a
- color: #00B7FF
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/stylus.d.ts b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/stylus.d.ts
deleted file mode 100644
index db6bd8343..000000000
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressApp/stylus.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-declare module "stylus" {
- function middleware(dir: string);
-}
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/TypeScriptExpressApp.njsproj b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/TypeScriptExpressApp.njsproj
index 79577121b..0452fd1c2 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/TypeScriptExpressApp.njsproj
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/TypeScriptExpressApp.njsproj
@@ -35,9 +35,8 @@
-
-
+
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/TypeScriptExpressApp.vstemplate b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/TypeScriptExpressApp.vstemplate
index 576b0cf90..ea1d6ad94 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/TypeScriptExpressApp.vstemplate
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/TypeScriptExpressApp.vstemplate
@@ -36,9 +36,6 @@
express.d.ts
-
- stylus.d.ts
-
app.ts
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/app.ts b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/app.ts
index ced295466..51418c59a 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/app.ts
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/app.ts
@@ -17,8 +17,6 @@ app.use(express.urlencoded());
app.use(express.methodOverride());
app.use(app.router);
-import stylus = require('stylus');
-app.use(stylus.middleware(path.join(__dirname, 'public')));
app.use(express.static(path.join(__dirname, 'public')));
// development only
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/layout.jade b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/layout.jade
index caf3aaeb5..7a3e9f509 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/layout.jade
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/layout.jade
@@ -2,6 +2,6 @@
html
head
title= title
- link(rel='stylesheet', href='/stylesheets/style.css')
+ link(rel='stylesheet', href='/stylesheets/main.css')
body
block content
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/main.css b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/main.css
new file mode 100644
index 000000000..4cd40111d
--- /dev/null
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/main.css
@@ -0,0 +1,8 @@
+body {
+ padding: 50px;
+ font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
+}
+
+a {
+ color: #00B7FF;
+}
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/package.json b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/package.json
index da7f16366..b00693d24 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/package.json
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/package.json
@@ -8,7 +8,6 @@
},
"dependencies": {
"express": "3.4.4",
- "jade": "*",
- "stylus": "*"
+ "jade": "*"
}
}
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/style.styl b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/style.styl
deleted file mode 100644
index 7010b10dd..000000000
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/style.styl
+++ /dev/null
@@ -1,5 +0,0 @@
-body
- padding: 50px
- font: 14px "Lucida Grande", Helvetica, Arial, sans-serif
-a
- color: #00B7FF
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/stylus.d.ts b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/stylus.d.ts
deleted file mode 100644
index db6bd8343..000000000
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptAzureExpressWebRole/stylus.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-declare module "stylus" {
- function middleware(dir: string);
-}
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/ExpressApp.njsproj b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/ExpressApp.njsproj
index 43183e682..619aeb04d 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/ExpressApp.njsproj
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/ExpressApp.njsproj
@@ -35,9 +35,8 @@
-
-
+
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/ExpressApp.vstemplate b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/ExpressApp.vstemplate
index 96494a846..edf2afb0d 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/ExpressApp.vstemplate
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/ExpressApp.vstemplate
@@ -19,7 +19,7 @@
- style.styl
+ main.css
@@ -35,9 +35,6 @@
express.d.ts
-
- stylus.d.ts
-
app.ts
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/app.ts b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/app.ts
index ced295466..51418c59a 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/app.ts
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/app.ts
@@ -17,8 +17,6 @@ app.use(express.urlencoded());
app.use(express.methodOverride());
app.use(app.router);
-import stylus = require('stylus');
-app.use(stylus.middleware(path.join(__dirname, 'public')));
app.use(express.static(path.join(__dirname, 'public')));
// development only
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/layout.jade b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/layout.jade
index caf3aaeb5..7a3e9f509 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/layout.jade
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/layout.jade
@@ -2,6 +2,6 @@
html
head
title= title
- link(rel='stylesheet', href='/stylesheets/style.css')
+ link(rel='stylesheet', href='/stylesheets/main.css')
body
block content
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/style.styl b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/main.css
similarity index 100%
rename from Nodejs/Product/Nodejs/ProjectTemplates/AzureExpress4App/style.styl
rename to Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/main.css
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/package.json b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/package.json
index da7f16366..b00693d24 100644
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/package.json
+++ b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/package.json
@@ -8,7 +8,6 @@
},
"dependencies": {
"express": "3.4.4",
- "jade": "*",
- "stylus": "*"
+ "jade": "*"
}
}
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/style.styl b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/style.styl
deleted file mode 100644
index 7010b10dd..000000000
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/style.styl
+++ /dev/null
@@ -1,5 +0,0 @@
-body
- padding: 50px
- font: 14px "Lucida Grande", Helvetica, Arial, sans-serif
-a
- color: #00B7FF
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/stylus.d.ts b/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/stylus.d.ts
deleted file mode 100644
index db6bd8343..000000000
--- a/Nodejs/Product/Nodejs/ProjectTemplates/TypeScriptExpressApp/stylus.d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-declare module "stylus" {
- function middleware(dir: string);
-}
\ No newline at end of file
diff --git a/Nodejs/Product/Nodejs/VSPackage.resx b/Nodejs/Product/Nodejs/VSPackage.resx
index 48f8f9200..b1263018c 100644
--- a/Nodejs/Product/Nodejs/VSPackage.resx
+++ b/Nodejs/Product/Nodejs/VSPackage.resx
@@ -195,15 +195,6 @@
JSON
-
- Stylus file
-
-
- An empty Stylus file
-
-
- Stylus
-
CSS file
diff --git a/Nodejs/Setup/NodejsTools/NodejsToolsFiles.proj b/Nodejs/Setup/NodejsTools/NodejsToolsFiles.proj
index 77632acb1..f5d0a550d 100644
--- a/Nodejs/Setup/NodejsTools/NodejsToolsFiles.proj
+++ b/Nodejs/Setup/NodejsTools/NodejsToolsFiles.proj
@@ -44,7 +44,6 @@
FileTemplates\NewItem\EmptyJs.js;
FileTemplates\NewItem\EmptyXml.xml;
FileTemplates\NewItem\EmptyTs.ts;
- FileTemplates\NewItem\EmptyStyl.styl;
FileTemplates\NewItem\EmptyLess.less;
FileTemplates\NewItem\EmptyJson.json;
FileTemplates\NewItem\EmptyJade.jade;