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: pactsafe/pactsafe-react-sdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.13.2
Choose a base ref
...
head repository: pactsafe/pactsafe-react-sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.13.3
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Dec 11, 2023

  1. Copy the full SHA
    1f14c27 View commit details

Commits on Jan 4, 2024

  1. 2.13.3

    agillaspie committed Jan 4, 2024
    Copy the full SHA
    9aff565 View commit details
Showing with 13 additions and 5 deletions.
  1. +8 −0 nwb.config.js
  2. +2 −2 package-lock.json
  3. +3 −3 package.json
8 changes: 8 additions & 0 deletions nwb.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const { LoaderOptionsPlugin } = require('webpack');
const Dotenv = require('dotenv-webpack');
const { version } = require('./package.json');

@@ -19,6 +20,13 @@ module.exports = {
extra: {
plugins: [
new Dotenv(),
new LoaderOptionsPlugin({
options: {
experiments: {
futureDefaults: true,
},
},
}),
],
},
},
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@pactsafe/pactsafe-react-sdk",
"version": "2.13.2",
"version": "2.13.3",
"description": "Ironclad Clickwrap React SDK - SDK for easy Ironclad Clickwrap implementations leveraging the Ironclad JavaScript Library & API",
"author": "Ironclad",
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"homepage": "https://github.com/PactSafe/pactsafe-react-sdk",
"scripts": {
"build": "nwb build-react-component",
"build": "NODE_OPTIONS=--openssl-legacy-provider nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"start": "nwb serve-react-demo",
"start": "NODE_OPTIONS=--openssl-legacy-provider nwb serve-react-demo",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",