Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
dbf6bdc
Update webpack-bundle-analyzer to patch 3.3.2
mudlabs May 23, 2019
76314ee
Update package.json
mudlabs Jun 5, 2019
4e622ae
Merge branch 'master' into dependencies
mudlabs Jun 6, 2019
790e386
Merge branch 'master' into dependencies
mudlabs Jun 16, 2019
121c3b2
fix: don't restart application when lazy loaded code is changed in an…
Fatme Jun 30, 2019
a70fb3b
fix: create PropertyAssignment instead of string literal (Identifier)…
DimitarTachev Jul 1, 2019
7d18cc1
fix: unify the TypeScript version with the Angular App (trying to fix…
DimitarTachev Jul 2, 2019
f558607
feat(hooks): improve hooks handling (#961)
rosen-vladimirov Jul 2, 2019
b00fcdd
Merge pull request #957 from NativeScript/fatme/fix-ng-uglify
Fatme Jul 2, 2019
90846e1
Merge pull request #959 from NativeScript/tachev/fix-ng-lazy-exception
Jul 2, 2019
8c4292e
fix: allow overriding the `global.process` object from both the app a…
DimitarTachev Jul 3, 2019
804030f
Merge pull request #962 from NativeScript/tachev/fix-process-polyfill
Jul 3, 2019
47ad5cf
Merge pull request #908 from mudlabs/dependencies
Jul 3, 2019
7586d4c
fix: avoid generating invalid JavaScript when merging IIFE files
DimitarTachev Jul 4, 2019
1a9c4b2
fix: log the real snapshot tool error by trying to evaluate the input…
DimitarTachev Jul 4, 2019
994d6a2
Merge pull request #965 from NativeScript/tachev/fix-uglfiy-sourcemap…
Jul 5, 2019
d3b5cab
test: update tests to ns-dev-appium v6 (#969)
SvetoslavTsenov Jul 8, 2019
d4a8dec
refactor: HMR and webpack improvements (#966)
Jul 8, 2019
f1e8081
fix: hmr export default crash (#970)
Jul 8, 2019
35d7385
fix: default export crash (#971)
Jul 8, 2019
f48bd8c
fix: handle the `bundle-config-loader` require.context change without…
Jul 9, 2019
bd893ce
fix: auto accept new or deleted files (#972)
Jul 10, 2019
aa4442a
fix: require automatically only files from app folder of unit-test-ru…
Fatme Jul 10, 2019
f5b21e6
fix: add loader-utils as dep instead of dev-dep (#975)
Jul 10, 2019
dbd8c8d
Merge pull request #974 from NativeScript/fatme/fix-unit-test-runner
Fatme Jul 10, 2019
5423504
fix: fix the execution of unit tests with latest unit-test-runner and…
Fatme Jul 10, 2019
cf74631
release: cut the 1.0.0 release (#977)
Jul 10, 2019
f88d2e1
chore: merge 'release' into vladimirov/merge-rel-master
rosen-vladimirov Jul 15, 2019
0585a91
chore: bump version to 1.1.0
rosen-vladimirov Jul 15, 2019
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: auto accept new or deleted files (#972)
  • Loading branch information
Alexander Vakrilov authored and dtopuzov committed Jul 10, 2019
commit bd893ce6cfbda0d49ed9f4ffbf69d8769ba6dbe1
5 changes: 5 additions & 0 deletions bundle-config-loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ const loader: loader.Loader = function (source, map) {
${hmr}
const context = require.context("~/", true, ${registerModules});
global.registerWebpackModules(context);
if (module.hot) {
module.hot.accept(context.id, () => {
console.log("HMR: Accept module '" + context.id + "' from '" + module.id + "'");
});
}
${source}
`;
}
Expand Down