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

Prepare for canary release #352

Merged
merged 8 commits into from
Jan 21, 2020
Merged

Prepare for canary release #352

merged 8 commits into from
Jan 21, 2020

Commits on Jan 16, 2020

  1. Configuration menu
    Copy the full SHA
    c37a518 View commit details
    Browse the repository at this point in the history
  2. chore(release): 3.4.0

    ctavan committed Jan 16, 2020
    Configuration menu
    Copy the full SHA
    fb47a9d View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2020

  1. docs: fix changelog

    Apparently the changelog for v3.3.3 was edited manually and had a bad
    heading level
    ctavan committed Jan 20, 2020
    Configuration menu
    Copy the full SHA
    26987bc View commit details
    Browse the repository at this point in the history
  2. chore: rename package script to build

    "build" seems to be the more appropriate term for what we're doing here.
    
    Part of #343.
    ctavan committed Jan 20, 2020
    Configuration menu
    Copy the full SHA
    4244b9e View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2020

  1. chore: transition dev dependencies to exact versions

    Since the devDependencies are pinned in the package-lock.json anyways
    there's no real use in leaving a version range open for the
    devDependencies in package.json.
    
    Instead, we simply keep our toolchain up-to-date with tools like ncu.
    
    With this commit I also re-generate package-lock.json from scratch.
    ctavan committed Jan 21, 2020
    Configuration menu
    Copy the full SHA
    4bd4fd7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f2c361d View commit details
    Browse the repository at this point in the history
  3. chore: upgrade lint-staged

    ctavan committed Jan 21, 2020
    Configuration menu
    Copy the full SHA
    06436a7 View commit details
    Browse the repository at this point in the history
  4. build: set up and document build and release scripts

    Since we have a build step now we must point the package.json file
    reference to the dist folder and must explicitly list all files that we
    want to be included in the npm tarball.
    
    The initial idea was to prepare the contents of the final npm tarball
    all in the dist directory (including a copy of the package.json) but
    that turns out not to work particularly well with standard-version which
    is used to manage the version numbers and changelog.
    
    Unfortunately this change also required a small workaround to allow
    local installation of the uuid module in the examples (see .local/).
    
    Also instructions for relasing a new version have not yet been
    documented which is finally done here.
    
    Since we now explicitly list all files to be included in the tarball
    through the files property of package.json we no longer need the
    .npmignore file.
    ctavan committed Jan 21, 2020
    Configuration menu
    Copy the full SHA
    53ca9d4 View commit details
    Browse the repository at this point in the history