Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add --reload option for hard reload on non-CSS assets #443

Closed
wants to merge 309 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Sep 8, 2017

  1. Configuration menu
    Copy the full SHA
    590741e View commit details
    Browse the repository at this point in the history
  2. Fix minifier

    devongovett committed Sep 8, 2017
    Configuration menu
    Copy the full SHA
    5654c31 View commit details
    Browse the repository at this point in the history
  3. Catch errors in worker

    devongovett committed Sep 8, 2017
    Configuration menu
    Copy the full SHA
    58776aa View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2017

  1. Configuration menu
    Copy the full SHA
    e862ad6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fc8ce69 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4777166 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9aadfed View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b5cfd9b View commit details
    Browse the repository at this point in the history
  6. Clean up

    devongovett committed Sep 9, 2017
    Configuration menu
    Copy the full SHA
    364e637 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    fc8bd76 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    17ec2e7 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    c746ab3 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2017

  1. Fix moveAssetToBundle

    devongovett committed Sep 11, 2017
    Configuration menu
    Copy the full SHA
    1a5f9a8 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2017

  1. Configuration menu
    Copy the full SHA
    0602359 View commit details
    Browse the repository at this point in the history
  2. Pass options to packagers

    devongovett committed Sep 13, 2017
    Configuration menu
    Copy the full SHA
    9f74760 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b6845c0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    65890c7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ee396ce View commit details
    Browse the repository at this point in the history
  6. Fix tests

    devongovett committed Sep 13, 2017
    Configuration menu
    Copy the full SHA
    6ab84af View commit details
    Browse the repository at this point in the history
  7. Only change parent bundle at explicit split points

    Otherwise CSS which imports JS for example won’t get added to the JS bundle. Needed for HMR.
    devongovett committed Sep 13, 2017
    Configuration menu
    Copy the full SHA
    49c5517 View commit details
    Browse the repository at this point in the history
  8. Docs

    devongovett committed Sep 13, 2017
    Configuration menu
    Copy the full SHA
    102198c View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2017

  1. Configuration menu
    Copy the full SHA
    c9eddac View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2017

  1. Configuration menu
    Copy the full SHA
    01f56a4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    29dcc82 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5b9b437 View commit details
    Browse the repository at this point in the history
  4. Fix bundle url matching

    devongovett committed Sep 17, 2017
    Configuration menu
    Copy the full SHA
    d8d5552 View commit details
    Browse the repository at this point in the history
  5. Fix caching of raw assets

    Don’t load them into memory
    devongovett committed Sep 17, 2017
    Configuration menu
    Copy the full SHA
    8cc282f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0e65874 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c0941d8 View commit details
    Browse the repository at this point in the history
  8. Add a CLI

    devongovett committed Sep 17, 2017
    Configuration menu
    Copy the full SHA
    c0f6a57 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2017

  1. Configuration menu
    Copy the full SHA
    780d9ed View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    31b61fb View commit details
    Browse the repository at this point in the history
  3. Fix test option

    devongovett committed Sep 18, 2017
    Configuration menu
    Copy the full SHA
    a32ed72 View commit details
    Browse the repository at this point in the history
  4. Make CLI faster

    devongovett committed Sep 18, 2017
    Configuration menu
    Copy the full SHA
    8a5cc84 View commit details
    Browse the repository at this point in the history
  5. Include options in cache filename hashes

    So building for prod and building for dev don’t use the same cache files.
    devongovett committed Sep 18, 2017
    Configuration menu
    Copy the full SHA
    121151f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    56d568a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    40778a9 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3970323 View commit details
    Browse the repository at this point in the history
  9. Don’t transform JSON

    devongovett committed Sep 18, 2017
    Configuration menu
    Copy the full SHA
    3ab9964 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2017

  1. Determine which babylon plugins to enable from babelrc

    JSX and Flow plugins are slow, so we want those to be disabled by default.
    devongovett committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    b313143 View commit details
    Browse the repository at this point in the history
  2. Only start as many workers as there are *physical* CPUs

    Previously this would start workers based on the number of CPUs reported by `require(‘os’).cpus().length`. This included virtual CPUs (e.g. hyperthreading), rather than only physical CPUs. Starting more workers than there are physical CPUs seems to have a negative effect on performance in testing.
    devongovett committed Sep 20, 2017
    Configuration menu
    Copy the full SHA
    5391e61 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2017

  1. Configuration menu
    Copy the full SHA
    73c502d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4990547 View commit details
    Browse the repository at this point in the history
  3. Fix babel transform test

    devongovett committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    d25f3fe View commit details
    Browse the repository at this point in the history
  4. Return bundle

    devongovett committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    6bd0f25 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4e8ac29 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    183e04e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5fd2e35 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    493d1bd View commit details
    Browse the repository at this point in the history
  9. Add tests for watcher

    devongovett committed Sep 24, 2017
    Configuration menu
    Copy the full SHA
    c9b3262 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    96af720 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2017

  1. Tests for HMR

    devongovett committed Sep 25, 2017
    Configuration menu
    Copy the full SHA
    ac742f6 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    devongovett committed Sep 25, 2017
    Configuration menu
    Copy the full SHA
    ac771a0 View commit details
    Browse the repository at this point in the history
  3. Update README.md

    devongovett committed Sep 25, 2017
    Configuration menu
    Copy the full SHA
    5f29421 View commit details
    Browse the repository at this point in the history
  4. Update README.md

    devongovett committed Sep 25, 2017
    Configuration menu
    Copy the full SHA
    b91b439 View commit details
    Browse the repository at this point in the history
  5. Create LICENSE

    devongovett committed Sep 25, 2017
    Configuration menu
    Copy the full SHA
    f8db166 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2017

  1. Make babel a pretransform

    Need to run before collecting dependencies, in case some are added, e.g. by runtime transformer.
    devongovett committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    9db34b8 View commit details
    Browse the repository at this point in the history
  2. Add tests for server

    devongovett committed Sep 29, 2017
    Configuration menu
    Copy the full SHA
    ed43dcc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e0af8bc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6ffeba8 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2017

  1. Fix some tests

    devongovett committed Sep 30, 2017
    Configuration menu
    Copy the full SHA
    730726b View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2017

  1. Rename to parcel

    devongovett committed Oct 2, 2017
    Configuration menu
    Copy the full SHA
    b44e13d View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2017

  1. Update README.md

    devongovett committed Oct 8, 2017
    Configuration menu
    Copy the full SHA
    5b4ecb9 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    devongovett committed Oct 8, 2017
    Configuration menu
    Copy the full SHA
    5abc62a View commit details
    Browse the repository at this point in the history
  3. Update README.md

    devongovett committed Oct 8, 2017
    Configuration menu
    Copy the full SHA
    048541c View commit details
    Browse the repository at this point in the history
  4. Update README.md

    devongovett committed Oct 8, 2017
    Configuration menu
    Copy the full SHA
    fefbc30 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2017

  1. Update README.md

    devongovett committed Oct 17, 2017
    Configuration menu
    Copy the full SHA
    9f4624a View commit details
    Browse the repository at this point in the history
  2. Update README.md

    devongovett committed Oct 17, 2017
    Configuration menu
    Copy the full SHA
    1ffd8e5 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2017

  1. Configuration menu
    Copy the full SHA
    3f47da3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7873307 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    38dad73 View commit details
    Browse the repository at this point in the history
  4. Add support for getting implicit dependencies of an asset

    Adds an optional delegate object to respond to things like this. Perhaps there will be more extension points in the future.
    devongovett committed Oct 19, 2017
    Configuration menu
    Copy the full SHA
    ac47201 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2017

  1. Add v8-compile-cache

    devongovett committed Oct 23, 2017
    Configuration menu
    Copy the full SHA
    9a04a7d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f56a890 View commit details
    Browse the repository at this point in the history
  3. Change npm package name

    devongovett committed Oct 23, 2017
    3 Configuration menu
    Copy the full SHA
    187b35b View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2017

  1. Configuration menu
    Copy the full SHA
    3e97493 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2017

  1. Add support for importing node_modules from stylus files

    Uses a custom stylus evaluator to use our custom resolver, but still fall back to the normal stylus one if it fails.
    devongovett committed Oct 29, 2017
    Configuration menu
    Copy the full SHA
    43928ad View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2017

  1. Queue changed assets to be rebuilt

    This fixes the case where many files are changed at once (e.g. switched branches, etc.). Waits 100ms after the last file is changed to perform the rebuild and queues all of the files that are modified to be rebuilt at once.
    devongovett committed Nov 5, 2017
    Configuration menu
    Copy the full SHA
    bd6f54d View commit details
    Browse the repository at this point in the history
  2. Logger cleanup

    devongovett committed Nov 5, 2017
    Configuration menu
    Copy the full SHA
    8281615 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2017

  1. Configuration menu
    Copy the full SHA
    f2afe7c View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2017

  1. 1 Configuration menu
    Copy the full SHA
    4ffe501 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2017

  1. Configuration menu
    Copy the full SHA
    1729662 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f45a5f2 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2017

  1. Configuration menu
    Copy the full SHA
    d9db3fb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e7f10a0 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2017

  1. Configuration menu
    Copy the full SHA
    638fe4b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    81d8b7d View commit details
    Browse the repository at this point in the history
  3. 1.0.1

    devongovett committed Dec 5, 2017
    Configuration menu
    Copy the full SHA
    ba9b3f8 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2017

  1. Check if asset path is a URL before prepending public path

    Brandon Dail authored and Brandon Dail committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    166eaf7 View commit details
    Browse the repository at this point in the history
  2. Add test for remote URLs

    Brandon Dail authored and Brandon Dail committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    b61e176 View commit details
    Browse the repository at this point in the history
  3. ✏️ fix small typo

    yeskunall committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    030bafd View commit details
    Browse the repository at this point in the history
  4. remove babel-preset-es2015 as a dev dep

    `babel-preset-env` is already being used in its place
    yeskunall committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    9c05d15 View commit details
    Browse the repository at this point in the history
  5. Merge pull request parcel-bundler#27 from yeskunall/remove-babel-pres…

    …et-es2015
    
    ➖ Remove `babel-preset-es2015` as a dev dependency
    devongovett committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    4d87814 View commit details
    Browse the repository at this point in the history
  6. Merge pull request parcel-bundler#26 from yeskunall/typo-in-asset

    ✏️ Fix small typo
    devongovett committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    a6aab90 View commit details
    Browse the repository at this point in the history
  7. Fix port issue with HMR server on Node v6

    Port wasn’t available until after server started.
    devongovett committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    bab5ff4 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    88bdf1e View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9daa7dd View commit details
    Browse the repository at this point in the history
  10. Merge pull request parcel-bundler#32 from BrianRosamilia/patch-1

    Add repository section to package.json
    devongovett committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    79aa03c View commit details
    Browse the repository at this point in the history
  11. Merge branch 'fix-url-issue' of https://github.com/aweary/parcel into…

    … aweary-fix-url-issue
    devongovett committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    a5a8e9e View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    45dd384 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    92be140 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    7b899b3 View commit details
    Browse the repository at this point in the history
  15. Add babelrc to npmignore

    Should fix parcel trying to compile builtin modules like css-loader. parcel-bundler#24 parcel-bundler#6
    devongovett committed Dec 6, 2017
    1 Configuration menu
    Copy the full SHA
    30616e9 View commit details
    Browse the repository at this point in the history
  16. 1.0.2

    devongovett committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    ad5135a View commit details
    Browse the repository at this point in the history
  17. Feature/parcel-bundler#11 windows path issue (parcel-bundler#48)

    * parse root path, add cross-env for windows and unix support
    
    * nromalize paths
    StarpTech authored and devongovett committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    67cd3b0 View commit details
    Browse the repository at this point in the history
  18. Setup Travis, add build script, init contributing docs (parcel-bundle…

    …r#45)
    
    * Add Travis
    
    * Add yarn.lock
    
    * Temporarily disable Node 6 in Travis
    
    * Add contributing docs
    
    * Add build script
    jamiebuilds authored and devongovett committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    90f69ff View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    9b06612 View commit details
    Browse the repository at this point in the history
  20. Merge pull request parcel-bundler#59 from micopc/fix/publicUrl-issue

    Fix issue with normalizeOptions and publicUrl
    devongovett committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    bb75349 View commit details
    Browse the repository at this point in the history
  21. Do not try to import data: tel: mailto: something: URLs (parcel-bundl…

    …er#50)
    
    * Ignore data URLs
    
    * Add tests
    
    * Ignore tel and mailto URLs
    
    * Hoist  regexes into constants
    oliger authored and devongovett committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    781b7ec View commit details
    Browse the repository at this point in the history
  22. Fix default only exports

    RichieAHB committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    860a748 View commit details
    Browse the repository at this point in the history
  23. Merge pull request parcel-bundler#63 from RichieAHB/fix-default-only-…

    …exports
    
    Fix default only exports
    devongovett committed Dec 6, 2017
    Configuration menu
    Copy the full SHA
    b25af33 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2017

  1. Configuration menu
    Copy the full SHA
    f3287ab View commit details
    Browse the repository at this point in the history
  2. Rename pjson -> pkg

    jamiebuilds committed Dec 7, 2017
    Configuration menu
    Copy the full SHA
    e24b1a0 View commit details
    Browse the repository at this point in the history
  3. Merge pull request parcel-bundler#67 from nithinpeter/feature/#62_mak…

    …e_version_part_of_cache_key
    
    Make current Parcel version part of cache key.
    devongovett committed Dec 7, 2017
    Configuration menu
    Copy the full SHA
    dbba6ef View commit details
    Browse the repository at this point in the history
  4. firefox fix, parcel-bundler#36

    commit 49c2cc213aa73dce89ab9021bd5d09bca0e783b6
    Author: Devon Govett <devongovett@gmail.com>
    Date:   Wed Dec 6 20:35:19 2017 -0800
    
        cleanup
    
    commit 091177ff471e68703449fa608ab72123c9565ea6
    Merge: dbba6ef 1afb09f
    Author: Devon Govett <devongovett@gmail.com>
    Date:   Wed Dec 6 20:33:22 2017 -0800
    
        Merge branch 'master' of https://github.com/DeMoorJasper/parcel into DeMoorJasper-master
    
    commit 1afb09f
    Merge: eb70efb 90f69ff
    Author: Jasper De Moor <jdemo@live.be>
    Date:   Wed Dec 6 21:20:57 2017 +0100
    
        Merge branch 'master' into master
    
    commit eb70efb
    Merge: 2d81326 90f69ff
    Author: Jasper De Moor <jdemo@live.be>
    Date:   Wed Dec 6 21:20:26 2017 +0100
    
        Merge branch 'master' into master
    
    commit 2d81326
    Author: Jasper De Moor <jasperdemoor@gmail.com>
    Date:   Wed Dec 6 20:43:54 2017 +0100
    
        firefox fix, parcel-bundler#36
    
    commit 1f5ed9f
    Author: Jasper De Moor <jasperdemoor@gmail.com>
    Date:   Wed Dec 6 17:02:42 2017 +0100
    
        Tiny gitignore cleanup
    devongovett committed Dec 7, 2017
    Configuration menu
    Copy the full SHA
    90a5373 View commit details
    Browse the repository at this point in the history
  5. 1.0.3

    devongovett committed Dec 7, 2017
    Configuration menu
    Copy the full SHA
    03ef0ff View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1fecc2a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    463160b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e69c83d View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    c49e43a View commit details
    Browse the repository at this point in the history
  10. Merge pull request parcel-bundler#74 from parcel-bundler/fix-tests

    Improve flakey tests
    devongovett committed Dec 7, 2017
    Configuration menu
    Copy the full SHA
    4cc343b View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    7d1f384 View commit details
    Browse the repository at this point in the history
  12. Create ISSUE_TEMPLATE.md

    jamiebuilds committed Dec 7, 2017
    2 Configuration menu
    Copy the full SHA
    f8dd2f2 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    2b26f96 View commit details
    Browse the repository at this point in the history
  14. Fixed minor typo

    davidnagli committed Dec 7, 2017
    Configuration menu
    Copy the full SHA
    87b9529 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    29f8df7 View commit details
    Browse the repository at this point in the history
  16. Merge pull request parcel-bundler#92 from davidnagli/patch-1

    Fixed minor typo
    devongovett committed Dec 7, 2017
    Configuration menu
    Copy the full SHA
    375b0c9 View commit details
    Browse the repository at this point in the history
  17. Merge pull request parcel-bundler#81 from parcel-bundler/add-issue-te…

    …mplate
    
    Create ISSUE_TEMPLATE.md
    devongovett committed Dec 7, 2017
    Configuration menu
    Copy the full SHA
    627c90b View commit details
    Browse the repository at this point in the history
  18. Merge pull request parcel-bundler#85 from ajaymathur/amathur/implemen…

    …t-parse-json
    
    using parse-json for more helpful messages
    devongovett committed Dec 7, 2017
    Configuration menu
    Copy the full SHA
    ebadce6 View commit details
    Browse the repository at this point in the history
  19. Emit bundling errors via HMR

    spalger committed Dec 7, 2017
    Configuration menu
    Copy the full SHA
    c3df809 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    36b2054 View commit details
    Browse the repository at this point in the history
  21. Merge pull request parcel-bundler#98 from marcioj/marcioj.set-env

    use NODE_ENV = development by default on parcel serve
    devongovett committed Dec 7, 2017
    Configuration menu
    Copy the full SHA
    a1a190b View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2017

  1. Configuration menu
    Copy the full SHA
    1127c57 View commit details
    Browse the repository at this point in the history
  2. Merge pull request parcel-bundler#115 from parcel-bundler/slack-badged

    Add badge section and add Slack
    devongovett committed Dec 8, 2017
    Configuration menu
    Copy the full SHA
    45ee82b View commit details
    Browse the repository at this point in the history
  3. Add Community section to README.md (parcel-bundler#116)

    * Add Community section to README.md
    
    * Remove duplicate Slack badge
    shawwn authored and jamiebuilds committed Dec 8, 2017
    Configuration menu
    Copy the full SHA
    11d109b View commit details
    Browse the repository at this point in the history
  4. Basic TypeScript Support (parcel-bundler#84)

    * Tiny gitignore cleanup
    
    * firefox fix, parcel-bundler#36
    
    * ts support
    
    * tsx added
    
    * transpileoptions improvements and bugfix
    
    * tsconfig.json support
    
    * add basic typescript test
    
    * Default to ES2015 to stay consistent with the js default
    
    * remove custom transform, implement check in js transform for ts and put codegen back to commonjs
    
    * keep ts transform addition within ts module
    
    * ts testing and bugfix
    
    * improve jsx parameter and default to preserve and let babel handle it
    
    * improve jsx parameter and default to preserve and let babel handle it
    Jasper De Moor authored and devongovett committed Dec 8, 2017
    Configuration menu
    Copy the full SHA
    757b673 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c27c5c8 View commit details
    Browse the repository at this point in the history
  6. Merge postcss-modules config (parcel-bundler#75)

    * Merge postcss-modules config
    
    * Use pure js instead of lodash
    
    * formatting
    isbasex authored and devongovett committed Dec 8, 2017
    Configuration menu
    Copy the full SHA
    582f8db View commit details
    Browse the repository at this point in the history
  7. seamless (parcel-bundler#76)

    * seamless
    
    * formatting
    TongDaDa authored and devongovett committed Dec 8, 2017
    5 Configuration menu
    Copy the full SHA
    aecb3ad View commit details
    Browse the repository at this point in the history
  8. Merge branch 'notify-browser-on-error' of https://github.com/spalger/…

    …parcel into spalger-notify-browser-on-error
    devongovett committed Dec 8, 2017
    Configuration menu
    Copy the full SHA
    13a08b8 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    67317ab View commit details
    Browse the repository at this point in the history
  10. Add charset to error response

    Fixes emoji
    devongovett committed Dec 8, 2017
    Configuration menu
    Copy the full SHA
    daf32aa View commit details
    Browse the repository at this point in the history
  11. parcel-bundler -> parcel

    devongovett committed Dec 8, 2017
    Configuration menu
    Copy the full SHA
    ed5982a View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    d9d8bab View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    a678259 View commit details
    Browse the repository at this point in the history
  14. Print stack traces on error (parcel-bundler#114)

    * Print stack traces on error
    
    * Append the original error message
    
    * Move try/catch
    
    * Fix catch block
    
    * Revert, only generate code frames on module error
    
    * Better logic for error code frame generation
    shawwn authored and devongovett committed Dec 8, 2017
    Configuration menu
    Copy the full SHA
    4ab9b87 View commit details
    Browse the repository at this point in the history
  15. 1.1.0

    devongovett committed Dec 8, 2017
    Configuration menu
    Copy the full SHA
    8843b58 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    d2ba17e View commit details
    Browse the repository at this point in the history
  17. Prettier (parcel-bundler#121)

    * Add prettier
    
    * Add prettierignore
    
    * Prettier all the files
    
    * Remove console.log
    jamiebuilds authored and devongovett committed Dec 8, 2017
    Configuration menu
    Copy the full SHA
    548eef9 View commit details
    Browse the repository at this point in the history
  18. 1 Configuration menu
    Copy the full SHA
    72c4d47 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    f758994 View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2017

  1. Configuration menu
    Copy the full SHA
    29515f4 View commit details
    Browse the repository at this point in the history
  2. jsm support (parcel-bundler#132)

    Jasper De Moor authored and devongovett committed Dec 9, 2017
    Configuration menu
    Copy the full SHA
    cdda044 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a79adfc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c8295de View commit details
    Browse the repository at this point in the history
  5. log errors on pluginload (parcel-bundler#140)

    Jasper De Moor authored and devongovett committed Dec 9, 2017
    Configuration menu
    Copy the full SHA
    acdf979 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    cf6902a View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2017

  1. Configuration menu
    Copy the full SHA
    355c63b View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2017

  1. added version option to command description (parcel-bundler#147)

    * added version option to command description
    
    * remove unneccessary descriptions
    philipodev authored and devongovett committed Dec 11, 2017
    Configuration menu
    Copy the full SHA
    35c65a3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f8b3d55 View commit details
    Browse the repository at this point in the history
  3. Add Travis, npm-version, npm-dm and twitter badges. (parcel-bundler#172)

    * Add Travis, npm-version, npm-dm, twitter badges.
    
    * Add David Dependancy Status
    Gagan authored and devongovett committed Dec 11, 2017
    Configuration menu
    Copy the full SHA
    644f195 View commit details
    Browse the repository at this point in the history
  4. Exit on build error when running parcel build (parcel-bundler#176)

    * exit
    
    * use exitCode for gracefull exiting
    Jasper De Moor authored and devongovett committed Dec 11, 2017
    Configuration menu
    Copy the full SHA
    34b84e4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7c0acb3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2e32662 View commit details
    Browse the repository at this point in the history
  7. support json comments (parcel-bundler#171)

    Jasper De Moor authored and devongovett committed Dec 11, 2017
    Configuration menu
    Copy the full SHA
    7bfe232 View commit details
    Browse the repository at this point in the history
  8. Only use os.cpus() and filter out core like physical-cpu-count did (p…

    …arcel-bundler#142)
    
    * Only use os.cpus() and filter out core like physical-cpu-count did
    
    The problem is with heroku and some CI, the physical-cpu-count linux branch requires a binary and access not provided by these environments.
    
    * using physical-cpu-count and defaulting to os.cpus()
    
    * get the actual length, should be good
    reel authored and devongovett committed Dec 11, 2017
    Configuration menu
    Copy the full SHA
    9d319af View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0ff76be View commit details
    Browse the repository at this point in the history
  10. Add AppVeyor CI & fix tests on Windows (parcel-bundler#183)

    * Enable AppVeyor windows builds
    
    * Fix css, glob, javascript, watcher, html and hmr tests on windows
    brandon93s authored and devongovett committed Dec 11, 2017
    Configuration menu
    Copy the full SHA
    0eb7a93 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    75cdbc5 View commit details
    Browse the repository at this point in the history
  12. Add Appveyor badge

    devongovett committed Dec 11, 2017
    Configuration menu
    Copy the full SHA
    ce1409e View commit details
    Browse the repository at this point in the history
  13. Fix RawAsset loading. (parcel-bundler#160)

    * Prepending raw asset generated bundle name with publicURL.
    
    * Working code. Failing tests.
    
    * Fix whoops.
    
    * Back to working.
    
    * Resolve Raw Asset URL instead of path.
    rakannimer authored and devongovett committed Dec 11, 2017
    Configuration menu
    Copy the full SHA
    51b90d7 View commit details
    Browse the repository at this point in the history
  14. Normalize path for windows os (parcel-bundler#197)

    * Normalize path for windows os
    
    * Use url.resolve instead of normalize-path
    xcatliu authored and devongovett committed Dec 11, 2017
    Configuration menu
    Copy the full SHA
    0479dee View commit details
    Browse the repository at this point in the history
  15. Change to uglify es & output uglify errors (parcel-bundler#157)

    * uglify-es
    
    * fix error handling
    
    * dump estree, enables ES6+ support
    
    * fix comment
    
    * change comment to match npm package name
    
    * remove useless comment
    
    * remove unused imports, change asset.generate to babel generate
    
    * improve minify options
    
    * fix comment
    
    * remove unused import
    
    * pivot back to asset.generate().js
    Jasper De Moor authored and devongovett committed Dec 11, 2017
    1 Configuration menu
    Copy the full SHA
    70663cc View commit details
    Browse the repository at this point in the history
  16. Make hmr-runtime builtin ES3-compatible (parcel-bundler#169)

    * Make hmr-runtime builtin ES3-compatible
    
    * use a regular for loop for loop in hmr-runtime
    chee authored and devongovett committed Dec 11, 2017
    Configuration menu
    Copy the full SHA
    d17dccc View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    dc52638 View commit details
    Browse the repository at this point in the history
  18. User friendly server errors and automatic port switching (parcel-bund…

    …ler#164)
    
    * more userfriendly server errors and automatically asign free port if port is busy
    
    * cleanup code a lil
    
    * fix typo
    
    * remove unused import
    
    * minor improvements
    
    * change double quotes into single quotes
    
    * lil cleanup & restructuring
    
    * bugfixes
    Jasper De Moor authored and devongovett committed Dec 11, 2017
    1 Configuration menu
    Copy the full SHA
    87350f4 View commit details
    Browse the repository at this point in the history
  19. Initial CoffeeScript support (parcel-bundler#118)

    * Initial CoffeeScript support
    
    * Minor
    
    * Simplify CoffeeScriptAsset
    shawwn authored and devongovett committed Dec 11, 2017
    Configuration menu
    Copy the full SHA
    2d680c0 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2017

  1. Configuration menu
    Copy the full SHA
    572ca21 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'fix-process-env-with-morph' of https://github.com/macie…

    …j-ka/parcel into maciej-ka-fix-process-env-with-morph
    devongovett committed Dec 12, 2017
    Configuration menu
    Copy the full SHA
    e428d89 View commit details
    Browse the repository at this point in the history
  3. Clean up

    devongovett committed Dec 12, 2017
    Configuration menu
    Copy the full SHA
    15b7622 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dba452a View commit details
    Browse the repository at this point in the history
  5. Package.json can't be found bugfix (parcel-bundler#170)

    * add path traversing for package.json, plugin bug
    
    * improve
    
    * fix
    
    * add another test
    Jasper De Moor authored and devongovett committed Dec 12, 2017
    Configuration menu
    Copy the full SHA
    7469a15 View commit details
    Browse the repository at this point in the history
  6. Clean up plugin loading

    devongovett committed Dec 12, 2017
    Configuration menu
    Copy the full SHA
    957ffc6 View commit details
    Browse the repository at this point in the history
  7. Fix hmr

    devongovett committed Dec 12, 2017
    Configuration menu
    Copy the full SHA
    eeb2220 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    82956f6 View commit details
    Browse the repository at this point in the history
  9. 1.2.0

    devongovett committed Dec 12, 2017
    Configuration menu
    Copy the full SHA
    b6e0229 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d10042c View commit details
    Browse the repository at this point in the history
  11. Activating Open Collective (parcel-bundler#228)

    * Updated .github/ISSUE_TEMPLATE.md (optional)
    
    * Updated CONTRIBUTING.md (optional)
    
    * Added backers and sponsors on the README
    
    * Added call to donate after npm install (optional)
    
    * Native post install 
    
    to avoid adding another dependency
    
    * Update README.md
    xdamman authored and devongovett committed Dec 12, 2017
    Configuration menu
    Copy the full SHA
    0f554dc View commit details
    Browse the repository at this point in the history
  12. template literal fix (parcel-bundler#227)

    IE doesn't support template literal.
    tonkotsuboy authored and devongovett committed Dec 12, 2017
    Configuration menu
    Copy the full SHA
    b7b2991 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2017

  1. 1 Configuration menu
    Copy the full SHA
    8683579 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2017

  1. minor typo (parcel-bundler#254)

    mchao409 authored and devongovett committed Dec 14, 2017
    Configuration menu
    Copy the full SHA
    39824c9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bd45866 View commit details
    Browse the repository at this point in the history
  3. Move JSAsset's options gathering code into separate method (parcel-bu…

    …ndler#241)
    
    * Move js asset's options code into separate method
    
    * rename getOptions -> getParserOptions
    chee authored and devongovett committed Dec 14, 2017
    Configuration menu
    Copy the full SHA
    333c3aa View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2017

  1. Configuration menu
    Copy the full SHA
    ed35a09 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f62d476 View commit details
    Browse the repository at this point in the history
  3. Fix dev server index file (parcel-bundler#281)

    * Fix dev server index file
    
    When using custom template Asset (like parcel-plugin-pug) with `parcel src/index.pug` it generates correct index.html,
    but basename of file is index.pug rather than index.html, so server sends incorrect file.
    
    * Rewrited with using generateBundleName method. Thanks to @devongovett
    Ty3uK authored and devongovett committed Dec 15, 2017
    Configuration menu
    Copy the full SHA
    c008bb0 View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2017

  1. Configuration menu
    Copy the full SHA
    c727c95 View commit details
    Browse the repository at this point in the history
  2. parse port string as integer

    mattdesl committed Dec 16, 2017
    Configuration menu
    Copy the full SHA
    1fa9fef View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2017

  1. Improve websocket error handling and fix parcel-bundler#315 (parcel-b…

    …undler#320)
    
    * run prettier
    
    * add proper error handling to sending data
    
    * replace hacky bugfix with gracefull connection closing on client side
    
    * improve error handling to catch all errors not just when sending
    
    * fix tests
    
    * code cleanup
    Jasper De Moor authored and devongovett committed Dec 18, 2017
    Configuration menu
    Copy the full SHA
    9f27e15 View commit details
    Browse the repository at this point in the history
  2. 1.2.1

    devongovett committed Dec 18, 2017
    Configuration menu
    Copy the full SHA
    adabe2e View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2017

  1. Run cli.js through babel (parcel-bundler#246)

    * run prettier
    
    * fix
    
    * use same src folder as everything else
    Jasper De Moor authored and devongovett committed Dec 19, 2017
    Configuration menu
    Copy the full SHA
    ac0fbaf View commit details
    Browse the repository at this point in the history
  2. Remove arrow function syntax in hmr-runtime (parcel-bundler#343)

    * Remove arrow function syntax in hmr-runtime
    
    * Check 'WebSocket' for existence
    
    * Fix typo
    saintwinkle authored and devongovett committed Dec 19, 2017
    Configuration menu
    Copy the full SHA
    9f5b334 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'fix/port-integer' of https://github.com/mattdesl/parcel

    …into mattdesl-fix/port-integer
    
    # Conflicts:
    #	bin/cli.js
    devongovett committed Dec 19, 2017
    Configuration menu
    Copy the full SHA
    3c7dd34 View commit details
    Browse the repository at this point in the history
  4. Start server before bundling

    Fixes logging issue
    devongovett committed Dec 19, 2017
    Configuration menu
    Copy the full SHA
    44d0bd6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6731049 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    539ade1 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2017

  1. Configuration menu
    Copy the full SHA
    7fcae06 View commit details
    Browse the repository at this point in the history
  2. .uglifyrc config support (parcel-bundler#287)

    * run prettier
    
    * add uglify config
    Jasper De Moor authored and devongovett committed Dec 20, 2017
    Configuration menu
    Copy the full SHA
    1947a15 View commit details
    Browse the repository at this point in the history
  3. Clean up uglify transform

    devongovett committed Dec 20, 2017
    Configuration menu
    Copy the full SHA
    dc5259c View commit details
    Browse the repository at this point in the history
  4. Remove filename-unsafe but package-safe characters from bundle name (p…

    …arcel-bundler#285)
    
    * prettify the plugins test
    
    * replace package-safe but non-filesafe characters in package name
    
    * use the `sanitize-filename` module for entry name
    
    * remove sanitizeFilename indirection
    chee authored and devongovett committed Dec 20, 2017
    Configuration menu
    Copy the full SHA
    df02196 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    261848c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    7d96281 View commit details
    Browse the repository at this point in the history
  7. Root file shouldn't be hashed. (parcel-bundler#270)

    * This commit should solve the problem of root file being hashed.
    
    * This commit will move the isMainFile check within generateBundleName function.
    
    * Removing the boolean variable. And using the options variable
    ssuman authored and devongovett committed Dec 20, 2017
    Configuration menu
    Copy the full SHA
    075190c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ff9ffcf View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9376ddd View commit details
    Browse the repository at this point in the history
  10. Display absolute path on failed dependency resolve. (parcel-bundler#271)

    * Display absolute path on failed dependency resolve.
    
    When a file path can not be resolved the error message is cleaned
    up but the relative path to file is displayed.
    
    In cases where a mistake have been made this path can be very confusing,
    like `Cannot resolve dependency './../../../../../../main.js'` for when
    a path starts with `/`.
    
    This PR resolves attempted path into an absolute path in hope of
    reducing confusion and minimize cognitive overhead of `..` chasing.
    
    * Resolve absolute path relative to asset.
    
    * Log both relative name and absolute search path.
    pomle authored and devongovett committed Dec 20, 2017
    Configuration menu
    Copy the full SHA
    dffeb7d View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    bd1d6e8 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2017

  1. Add .editorconfig (parcel-bundler#361)

    * add `.gitattributes`
    
    This is to avoid having to deal with line endings on different OSes
    
    Ref https://help.github.com/articles/dealing-with-line-endings/
    
    * drop `.gitattributes` in favor of `.editorconfig`
    yeskunall authored and devongovett committed Dec 21, 2017
    Configuration menu
    Copy the full SHA
    6c96b65 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7618677 View commit details
    Browse the repository at this point in the history
  3. Uses ESLint to catch errors and fixes ESLint errors parcel-bundler#173 (

    parcel-bundler#180)
    
    * Uses ESLint to catch errors and fixes ESLint errors parcel-bundler#173
    
    * Changes ESLint configuration to allows usage of console
    
    * Launches npm run lint before git commit
    
    * Adds missing ESLint config files
    
    * Runs ESLint in AppVeyor
    
    * Fixes a regression introduced previously, fixes new warnings
    
    * Fixes new ESLint errors introduced in master
    
    * Specifies ecmaVersion=5 in builtins and fixes errors in index.js
    ghusse authored and devongovett committed Dec 21, 2017
    Configuration menu
    Copy the full SHA
    434b86c View commit details
    Browse the repository at this point in the history
  4. Fix lint

    devongovett committed Dec 21, 2017
    Configuration menu
    Copy the full SHA
    9f56e42 View commit details
    Browse the repository at this point in the history
  5. Add Reason asset type (parcel-bundler#342)

    * Add bsb-js dependency
    
    * Add ReasonAsset type
    
    * Actually add the Reason asset type
    
    * Add OCaml file type, add integration test, remote unused imports
    
    * use promisify for reading files
    
    * Fix integration tests
    rrdelaney authored and devongovett committed Dec 21, 2017
    Configuration menu
    Copy the full SHA
    47e9192 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    56ef993 View commit details
    Browse the repository at this point in the history
  7. Automagically install missing dependancies (parcel-bundler#306)

    * run prettier
    
    * initial try
    
    * minor bugfixes
    
    * fix secu vuln and add yarn support
    
    * minor bugfix
    
    * cleanup output
    
    * test command instead of lockfile
    
    * pivot back to finding the package/yarn file
    
    * tiny cleanup
    Jasper De Moor authored and devongovett committed Dec 21, 2017
    Configuration menu
    Copy the full SHA
    6f493f0 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2017

  1. Configuration menu
    Copy the full SHA
    7b80953 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bc90871 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ab3a7d6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    df89d98 View commit details
    Browse the repository at this point in the history
  5. 1.3.0

    devongovett committed Dec 22, 2017
    Configuration menu
    Copy the full SHA
    5c16471 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0f40da9 View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2017

  1. Configuration menu
    Copy the full SHA
    38f8aaf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5210bc6 View commit details
    Browse the repository at this point in the history

Commits on Dec 24, 2017

  1. 1.3.1

    devongovett committed Dec 24, 2017
    Configuration menu
    Copy the full SHA
    a2aa64a View commit details
    Browse the repository at this point in the history
  2. Added https development server support. (parcel-bundler#161)

    * Added https development server support.
    
    * From let to const cachedKey & cachedCert variable.
    
    * Updated logger string to display correct url while serving with --https option.
    mbaranovski authored and devongovett committed Dec 24, 2017
    Configuration menu
    Copy the full SHA
    90b9684 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ed11a2e View commit details
    Browse the repository at this point in the history
  4. Turn off https cert caching when --no-cache option is passed

    And ensure the cache directory exists before writing to it.
    devongovett committed Dec 24, 2017
    Configuration menu
    Copy the full SHA
    ec89fab View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2017

  1. Switch emojis to log-symbols for terminal compatibility (parcel-bundl…

    …er#363)
    
    * Don't show emoji on windows.
    
    * Use log-symbols
    
    * Emoji with fallback for windows
    shawwn authored and devongovett committed Dec 25, 2017
    Configuration menu
    Copy the full SHA
    0eb4487 View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2017

  1. Configuration menu
    Copy the full SHA
    bb6e604 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2017

  1. Merge pull request parcel-bundler#411 from fansenze/master

    fix loadplugin, when the plugin have some async work while loading
    devongovett committed Dec 28, 2017
    Configuration menu
    Copy the full SHA
    463c570 View commit details
    Browse the repository at this point in the history
  2. Add graphql support (parcel-bundler#239)

    tb authored and devongovett committed Dec 28, 2017
    Configuration menu
    Copy the full SHA
    8f1f497 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8a65676 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2017

  1. patch(hmr): use hostname for WS instantiation (parcel-bundler#426)

    * patch(hmr): use hostname for WS instantiation
    
    * test(hmr): add hostname shim for testing
    
    * Move location shim somewhere common
    ksafranski authored and devongovett committed Dec 29, 2017
    Configuration menu
    Copy the full SHA
    06d5ffc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d763a1a View commit details
    Browse the repository at this point in the history
  3. Add url dependency for serviceWorker.register calls (parcel-bundler#398)

    * Add url dependency for serviceWorker.register calls
    
    * extract matchesPattern helper
    
    * sync SW regexp with matchesPattern arg
    jdanyow authored and devongovett committed Dec 29, 2017
    Configuration menu
    Copy the full SHA
    0ab0aca View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2017

  1. handle app store url scheme (parcel-bundler#438)

    * handle app store url scheme
    
    * Update scheme regex
    jdanyow authored and devongovett committed Dec 30, 2017
    Configuration menu
    Copy the full SHA
    494fafc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    127c9b7 View commit details
    Browse the repository at this point in the history
  3. Fix: Error when scss file is empty parcel-bundler#327 (parcel-bundler…

    …#340)
    
    * Fix: Error when scss file is empty parcel-bundler#327
    
    * Return empty string when code is empty
    
    * Handling empty files
    
    * No need to load in mightHaveDependencies()
    
    * mightHaveDependencies doesn't run if this.contents is empty.
    gongpeione authored and devongovett committed Dec 30, 2017
    Configuration menu
    Copy the full SHA
    4c67f03 View commit details
    Browse the repository at this point in the history
  4. web worker support (parcel-bundler#441)

    * web worker support
    
    * fix lint error
    jdanyow authored and devongovett committed Dec 30, 2017
    Configuration menu
    Copy the full SHA
    c8a1156 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a1a3ab8 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    70a34eb View commit details
    Browse the repository at this point in the history