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: v3.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: v4.0.0
Choose a head ref
  • 4 commits
  • 3 files changed
  • 1 contributor

Commits on May 17, 2021

  1. feat(pkg)!: add exports field

    pi0 committed May 17, 2021
    Copy the full SHA
    0004098 View commit details
  2. chore: update org

    pi0 committed May 17, 2021
    Copy the full SHA
    7c5e442 View commit details
  3. chore: update build-dependencies

    pi0 committed May 17, 2021
    Copy the full SHA
    99e5a22 View commit details
  4. chore(release): 4.0.0

    pi0 committed May 17, 2021
    Copy the full SHA
    d9eb4dd View commit details
Showing with 644 additions and 765 deletions.
  1. +19 −8 CHANGELOG.md
  2. +14 −10 package.json
  3. +611 −747 yarn.lock
27 changes: 19 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,16 +2,27 @@

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.2](https://github.com/nuxt-contrib/is-https/compare/v3.0.1...v3.0.2) (2020-12-18)
## [4.0.0](https://github.com/unjs/is-https/compare/v3.0.2...v4.0.0) (2021-05-17)

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

### ⚠ BREAKING CHANGES

* **pkg:** add `exports` field

### Features

* **pkg:** add `exports` field ([0004098](https://github.com/unjs/is-https/commit/0004098ab20f47ff98f05fe504f79ae481890d56))

### [3.0.2](https://github.com/unjs/is-https/compare/v3.0.1...v3.0.2) (2020-12-18)

### [3.0.1](https://github.com/unjs/is-https/compare/v3.0.0...v3.0.1) (2020-12-14)


### Bug Fixes

* **pkg:** add files field ([6913c08](https://github.com/nuxt-contrib/is-https/commit/6913c0840b580fa199b636b2cfa143565dfffa21))
* **pkg:** add files field ([6913c08](https://github.com/unjs/is-https/commit/6913c0840b580fa199b636b2cfa143565dfffa21))

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


### ⚠ BREAKING CHANGES
@@ -20,11 +31,11 @@ All notable changes to this project will be documented in this file. See [standa

### Features

* use siroc build tool ([6929a58](https://github.com/nuxt-contrib/is-https/commit/6929a5849f650bba1ba8cb2fb2caab5637902884))
* use siroc build tool ([6929a58](https://github.com/unjs/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.2](https://github.com/unjs/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)
### [2.0.1](https://github.com/unjs/is-https/compare/v2.0.0...v2.0.1) (2020-05-31)

## 2.0.0 (2020-05-31)

@@ -35,4 +46,4 @@ All notable changes to this project will be documented in this file. See [standa

### Features

* rewrite with typescript ([0b01c25](https://github.com/nuxt-contrib/is-https/commit/0b01c25859b2dc2a26fafca8c883a0d26af62b76))
* rewrite with typescript ([0b01c25](https://github.com/unjs/is-https/commit/0b01c25859b2dc2a26fafca8c883a0d26af62b76))
24 changes: 14 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
{
"name": "is-https",
"version": "3.0.2",
"version": "4.0.0",
"description": "Check if the given request is HTTPS",
"repository": "nuxt-contrib/is-https",
"repository": "unjs/is-https",
"license": "MIT",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
@@ -16,10 +22,8 @@
"release": "yarn build && standard-version && npm publish && git push --follow-tags"
},
"devDependencies": {
"@types/node": "^14.0.6",
"rollup-plugin-typescript2": "^0.27.1",
"siroc": "^0.6.0",
"standard-version": "^8.0.0",
"typescript": "^3.9.3"
"@types/node": "latest",
"siroc": "latest",
"standard-version": "latest"
}
}
Loading