Skip to content

Commit

Permalink
Fix scripts src in tests page.
Browse files Browse the repository at this point in the history
  • Loading branch information
uid11 committed Sep 10, 2016
1 parent 5b87e25 commit ac5db5e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-task",
"version": "1.0.6",
"version": "1.0.7",
"description": "Implementation of nextTick (microtask queue) for all platforms (like asap.js).",
"main": "src/next-task.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion test/noPromise.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
var Promise = function() { return {then: Object}; };
</script>

<script src="../build/next-task.js"></script>
<script src="../build/nextTask.js"></script>

<script>Promise = _nativePromise;</script>

Expand Down
2 changes: 1 addition & 1 deletion test/noPromiseNoMutation.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
WebKitMutationObserver = undefined;
</script>

<script src="../build/next-task.js"></script>
<script src="../build/nextTask.js"></script>

<script>
Promise = _nativePromise;
Expand Down
1 change: 0 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ module.exports = {
filename: '[name].js',
library: '[name]'
},
watch: true,
watchOptions: {
aggregateTimeout: 200
},
Expand Down

0 comments on commit ac5db5e

Please sign in to comment.