SteveSandersonMS
8285bb0c74
Some extra links in docs
2016-10-21 15:10:30 +01:00
SteveSandersonMS
75abf1a2ab
Add docs about debugging
2016-10-21 15:09:04 +01:00
SteveSandersonMS
8c766c0382
Remove deprecated SourceMapDevToolPlugin (can use Webpack's built-in one with external source maps)
2016-10-21 09:22:35 +01:00
SteveSandersonMS
99bf212cce
Make aspnet-webpack resilient against Webpack configs with nonstring entrypoints. Fixes #376 .
2016-10-17 11:51:01 +01:00
SteveSandersonMS
1543595c01
Correct Windows path handling in new aspnet-webpack feature
2016-10-11 18:11:47 +01:00
SteveSandersonMS
a6d959b783
Publish updated aspnet-webpack
2016-10-11 16:12:27 +01:00
SteveSandersonMS
d20a72b812
In webpack dev middleware, after compilation, also write updated files to disk. This is needed for VS/VSCode debugger compatibility.
2016-10-11 15:56:06 +01:00
SteveSandersonMS
24773c8aa4
In aspnet-webpack, provide a SourceMapDevToolPlugin wrapper that strips out "charset=utf-8;" from inline source map URLs to enable VS debugger compatibility
2016-10-11 15:56:05 +01:00
SteveSandersonMS
6c645879a8
Publish updated aspnet-webpack
2016-10-10 13:20:54 +01:00
SteveSandersonMS
d5055dbaf3
Make the fix for #365 not be a breaking change (at least, for the considerable majority of aspnet-webpack users)
2016-10-10 12:36:52 +01:00
SteveSandersonMS
3568476cca
aspnet-webpack auto-loads 'event-source-polyfill' on client when HMR is enabled. This requires 'event-source-polyfill' to be included in the client-side bundle, so it's also now added to all the templates' vendor bundles. Fixes #365 .
2016-10-10 12:24:07 +01:00
SteveSandersonMS
93779a5e46
aspnet-webpack configures HMR to point directly to http://localhost :<port>/__webpack_hmr instead of proxying via /__webpack_hmr. This is because IE/Edge doesn't honour CORS headers properly following redirects (returns "Network Error 0x80004004"). This could be avoided if we could reverse-proxy to __webpack_hmr (waiting for https://github.com/aspnet/KestrelHttpServer/issues/1139 )
2016-10-10 12:00:56 +01:00
SteveSandersonMS
4e291130a0
Update domain-task to use TS 2.0 and @types
2016-10-05 14:30:22 +01:00
SteveSandersonMS
7f257e86e3
Update aspnet-webpack-react to use TS 2.0 and @types
2016-10-05 14:12:01 +01:00
SteveSandersonMS
5c0505440d
Update aspnet-webpack to use TS 2.0 and @types
2016-10-05 14:07:25 +01:00
SteveSandersonMS
f13c2595b8
Update aspnet-prerendering to use TS 2.0 and @types
2016-10-05 13:58:55 +01:00
SteveSandersonMS
ff396377b9
Fix some issues when building with Korebuild. Also make it build the project templates.
2016-10-05 10:59:24 +01:00
SteveSandersonMS
81d96766ee
domain-task also needs TypeScript 2+ because of whatwg-streams
2016-10-05 10:22:20 +01:00
SteveSandersonMS
17801a3c16
aspnet-prerendering now needs newer TypeScript to build, because on of its dependencies (whatwg-streams) does
2016-10-05 10:20:08 +01:00
SteveSandersonMS
0234b44355
In build scripts, use local rimraf package
2016-10-05 10:15:19 +01:00
SteveSandersonMS
18e8b7101c
In aspnet-webpack, allow webpack-hot-middleware/client to be added manually with options. Fixes #353
2016-10-04 11:36:10 +01:00
SteveSandersonMS
46966322b7
In LoadViaWebpack, account for CSS/font/etc files referenced with URLs that have a querystring. Fixes #335 .
2016-09-28 10:04:16 +01:00
SteveSandersonMS
adf4732191
Make aspnet-webpack and SpaServices both back-compatible with older versions of the other, in case people don't upgrade both at the same time
2016-09-28 10:04:02 +01:00
SteveSandersonMS
7b227229b3
In Webpack dev middleware, for configs that target Node, just run a 'watch' compiler (since Node isn't going to fetch the modules via HTTP anyway)
2016-09-28 10:00:59 +01:00
SteveSandersonMS
2241c55a90
Support for array-style webpack configs in aspnet-webpack. Fixes #291 .
2016-09-28 10:00:59 +01:00
SteveSandersonMS
46906e4ea8
Add repo info to package.json in all NPM packages hosted in this repo
2016-09-27 11:00:41 +01:00
SteveSandersonMS
e8594287db
In aspnet-webpack, make sure that webpack-externals-plugin doesn't treat non-JS files as external. Fixes #332 .
2016-09-27 09:59:51 +01:00
SteveSandersonMS
b55e444a55
Also print CWD in node 'require' error reports
2016-09-21 11:43:12 +01:00
SteveSandersonMS
f9807c546d
In SpaServices NuGet package, pass through error stack when NPM modules fail to load
2016-09-21 11:11:24 +01:00
SteveSandersonMS
232e908ce8
Pass through error stack when NPM module loading failed in aspnet-webpack and aspnet-prerendering to make debugging easier
2016-09-21 11:08:04 +01:00
SteveSandersonMS
80343e9f17
In aspnet-webpack, replace ExternalsPlugin with webpack-node-externals because of #132
2016-09-20 15:41:06 +01:00
SteveSandersonMS
f7ef36bc74
Remove redundant section of docs
2016-09-20 11:00:48 +01:00
SteveSandersonMS
50be444440
Update docs to describe using LESS with Angular 2 component styling
2016-09-20 10:57:17 +01:00
SteveSandersonMS
d76b013a56
WebpackDevMiddleware now uses ProjectPath option consistently. Fixes #307
2016-09-14 12:04:15 +01:00
SteveSandersonMS
7c316d5c74
Update to ASP.NET Core 1.0.1. Fixes #309
2016-09-14 11:36:53 +01:00
SteveSandersonMS
80f740a9ed
Revert "Webpack HMR EventSource requests are now proxied (rather than redirected) to the local HMR server" because of 'ECANCELED'/'EPIPE broken pipe' issues. Awaiting feedback from Kestrel team.
2016-09-13 12:51:23 +01:00
SteveSandersonMS
f071590fce
Webpack HMR EventSource requests are now proxied (rather than redirected) to the local HMR server. Fixes #271 .
2016-09-09 16:31:15 +01:00
SteveSandersonMS
bc2de2ad59
In aspnet-webpack HMR, don't rely on assumption that entry point is called 'main'. Fixes #289 .
2016-09-09 13:21:31 +01:00
SteveSandersonMS
605090e909
Publish updated version of aspnet-webpack as 1.0.10
2016-09-09 11:37:57 +01:00
Erik Medina
67f7e7450f
Adding tsd to dev dependencies in aspnet-webpack.
...
Adding tsd to aspnet-webpack's dev dependencies to allow the package's npm prepublish script to succeed without a global tsd install.
2016-09-09 11:34:43 +01:00
Erik Medina
da662c55fa
Make webpack dev dependency a peer dependency in aspnet-webpack.
...
Moving webpack from a dev dependency to a peer dependency makes the dependency soft and allows the webpack-dev-middleware to pickup the version of webpack being used by the consumer of the package.
2016-09-09 11:34:43 +01:00
SteveSandersonMS
1be9102aea
Prerendering server-side code can now issue redirections. Fixes #280
2016-09-09 11:09:44 +01:00
SteveSandersonMS
c2c45b04df
In preparation for supporting redirections, aspnet-prerendering now passes through all boot func resolution props to .NET code
2016-09-09 11:06:36 +01:00
SteveSandersonMS
1f2168949d
Publish updated aspnet-prerendering NPM package
2016-09-08 12:56:46 +01:00
SteveSandersonMS
4ca1669db1
Prerendering imposes its own (overridable) timeout with descriptive error
2016-09-08 12:56:05 +01:00
SteveSandersonMS
f0d954b2a6
Design review: Change AddNodeServices to take an Action<NodeServicesOptions> like other aspects of MVC DI config
2016-09-01 17:46:59 +01:00
SteveSandersonMS
f04fb8c421
Design review: Always instantiate via DI
2016-09-01 15:51:53 +01:00
SteveSandersonMS
4effd630a4
Fix typos
2016-09-01 12:42:12 +01:00
SteveSandersonMS
7f5810a622
Add docs about configuring Webpack to build LESS/SASS
2016-09-01 12:36:47 +01:00
SteveSandersonMS
a4e3360e65
Bump aspnet-webpack-react package version
2016-08-18 14:07:11 -07:00
Geir Sagberg
0ad0483935
Update aspnet-webpack-react to React 15
...
^15.0.0 is enough
Update ReactGrid example to work with newest Griddle version
Several fixes to stop build.sh from failing
2016-08-18 13:50:22 -07:00
SteveSandersonMS
6d8767d141
Tweak WebpackDevMiddleware.cs to avoid unnecessary Task.Yield()
2016-08-18 13:49:20 -07:00
SteveSandersonMS
098159998d
Add ability to configure environment variables for Node instances, plus auto-populate NODE_ENV based on IHostingEnvironment when possible. Fixes #230
2016-08-16 16:26:07 -07:00
SteveSandersonMS
c53bd8f8f6
Prerenderer now passes original (unescaped) URL to Node - fixes #250
2016-08-16 11:44:55 -07:00
SteveSandersonMS
0d0d25b032
In WebpackDevMiddleware, allow configuration of ProjectPath (implements #262 )
2016-08-15 14:40:38 -07:00
SteveSandersonMS
3403eb7548
Make aspnet-webpack compatible with older versions of the NodeServices package
2016-07-27 13:29:18 +01:00
SteveSandersonMS
de960d80aa
Allow explicit configuration of port number for webpack dev middleware server. Fixes #223 .
2016-07-27 11:13:09 +01:00
SteveSandersonMS
14337e32ab
WebpackDevMiddleware now preserves client's view of hostname when doing 302 to /__webpack_hmr
2016-07-27 11:03:04 +01:00
SteveSandersonMS
79872c1bde
Amend aspnet-webpack for better node-inspector support
2016-07-26 16:38:46 +01:00
SteveSandersonMS
057efb43c8
aspnet-webpack module now preserves 'path' and 'publicPath' config settings when invoking Webpack compiler. Fixes #176 .
2016-07-18 13:55:26 +01:00
SteveSandersonMS
fc897475f3
Update domain-task package to version 2.0.1 (major bump because breaking change) and modify 'fetch' behaviour so it no longer tries to register the task with domain-task automatically. See code comments for reasons.
2016-07-11 12:16:29 +01:00
SteveSandersonMS
4b38519001
Change all links in docs to point to new main branch ('dev')
2016-07-07 14:43:14 +01:00
SteveSandersonMS
4fb3b18868
Create new top-level DefaultNodeInstance concept that will soon hold the "connection draining" logic
2016-07-06 18:23:25 +01:00
SteveSandersonMS
00b598176c
Minor style tweaks
2016-07-06 10:44:21 +01:00
Tobias Rundbom
f8981185d9
Makes it possible to use absolute paths for publicPath in weback.config ( #161 )
...
- Parses publicPath as an URL and returns the path of that URL to be able to cope with absolute URLs
2016-07-06 10:28:11 +01:00
Steve Sanderson
9215ee3d7d
Update README.md
2016-07-06 10:28:11 +01:00
SteveSandersonMS
393e156b47
Better reporting of Webpack compilation errors to fix #159
2016-07-01 10:30:59 +01:00
SteveSandersonMS
b82e70e192
Fix for prerendering hanging if webpack compilation fails
2016-06-30 16:57:14 +01:00
SteveSandersonMS
eebf509846
Update 'src' project dependencies for .NET Core 1.0 RTM
2016-06-28 10:58:05 +01:00
SteveSandersonMS
9fabfd5c40
Fix typo
2016-06-21 15:48:07 +01:00
SteveSandersonMS
ea0a32a15b
Implement and document asp-prerender-data
2016-06-21 15:46:52 +01:00
SteveSandersonMS
1a53411046
Fix some whitespace issues
2016-06-21 15:44:38 +01:00
SteveSandersonMS
dab67c817c
Copy edit SpaServices README.md
2016-06-13 16:01:53 +01:00
SteveSandersonMS
b4fd30dee7
Add links and syntax highlighting to SpaServices README.md
2016-06-13 14:57:13 +01:00
SteveSandersonMS
266ea8815b
Add SpaServices README.md
2016-06-13 14:52:37 +01:00
SteveSandersonMS
311733b113
Fix references to socket APIs, and target the lowest net standard versions possible
2016-06-01 18:04:40 +01:00
Rasmus Melchior Jacobsen
931ba118e1
net451 support and changed netcoreapp1.0->netstandard1.5 for libraries
2016-06-01 17:10:11 +01:00
SteveSandersonMS
32ebaecdd8
Define DefaultNodeHostingModel in one common place so it can be changed easily
2016-06-01 16:15:34 +01:00
SteveSandersonMS
cb289fd387
Further stylistic tweaks
2016-05-31 22:29:27 +01:00
Andrei Tserakhau
b141419b14
refactor(angular-services): beutify base uri creation
...
bug: remove redundant closing brackets
2016-05-25 16:09:20 +03:00
Andrei Tserakhau
95cba7f5dd
refactor: apply default vs transform to xproj
...
refactor(spa-services): clean code
refactor(node-services): clean code, extract classes nto separate files
refactor(angular-services): prime cache cleanup
2016-05-25 16:08:49 +03:00
SteveSandersonMS
352108be35
Update all projects for final .NET Core RC2
2016-05-17 11:56:06 +01:00
SteveSandersonMS
d1964f087d
Change from netstandardapp1.5 to netcoreapp1.0 everywhere
2016-05-04 15:26:14 -07:00
SteveSandersonMS
13beb7cf27
Add local pack script. Remove dnx451 framework references. May add back later if needed.
2016-05-02 13:13:49 -07:00
SteveSandersonMS
25c728f885
Change all Microsoft.AspNet.* namespaces and references to Microsoft.AspNetCore.*
2016-05-02 13:13:49 -07:00
SteveSandersonMS
4a0e4bdf1a
Rename Microsoft.AspNet.* packages folders to Microsoft.AspNetCore.*
2016-05-02 13:13:49 -07:00