Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: unjs-archive/is-https
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.2
Choose a base ref
...
head repository: unjs-archive/is-https
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.0.0
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Dec 14, 2020

  1. feat!: use siroc build tool

    BREAKING CHANGE: you may need to transpile package for older browsers
    pi0 committed Dec 14, 2020
    Copy the full SHA
    6929a58 View commit details
  2. chore(release): 3.0.0

    pi0 committed Dec 14, 2020
    Copy the full SHA
    856723f View commit details
Showing with 511 additions and 2,497 deletions.
  1. +11 −0 CHANGELOG.md
  2. +3 −3 package.json
  3. +1 −1 tsconfig.json
  4. +496 −2,493 yarn.lock
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,17 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [3.0.0](https://github.com/nuxt-contrib/is-https/compare/v2.0.2...v3.0.0) (2020-12-14)


### ⚠ BREAKING CHANGES

* you may need to transpile package for older browsers

### Features

* use siroc build tool ([6929a58](https://github.com/nuxt-contrib/is-https/commit/6929a5849f650bba1ba8cb2fb2caab5637902884))

### [2.0.2](https://github.com/nuxt-contrib/is-https/compare/v2.0.1...v2.0.2) (2020-06-02)

### [2.0.1](https://github.com/nuxt-contrib/is-https/compare/v2.0.0...v2.0.1) (2020-05-31)
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "is-https",
"version": "2.0.2",
"version": "3.0.0",
"description": "Check if the given request is HTTPS",
"repository": "nuxt-contrib/is-https",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "bili src/index.ts --minimal",
"build": "siroc build",
"release": "yarn build && standard-version && npm publish && git push --follow-tags"
},
"devDependencies": {
"@types/node": "^14.0.6",
"bili": "^4.10.0",
"rollup-plugin-typescript2": "^0.27.1",
"siroc": "^0.6.0",
"standard-version": "^8.0.0",
"typescript": "^3.9.3"
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
"declaration": true,
"types": [
"node"
],
]
},
"include": [
"src"
Loading