Skip to content

Commit

Permalink
Merge pull request #5 from casper-ecosystem/npm-with-umd-version
Browse files Browse the repository at this point in the history
Npm package with umd version
  • Loading branch information
hoffmannjan authored Mar 4, 2021
2 parents e9bb60a + e4edbd7 commit 6723ff8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to casper-client-sdk.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.0.25

### Added

- Added UMD bundle into npm package.

## 1.0.24

### Added
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "casper-client-sdk",
"version": "1.0.24",
"version": "1.0.25",
"license": "Apache 2.0",
"description": "SDK to interact with the Casper blockchain",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build && npm run test",
"lint": "eslint src/ --fix",
"prebuild": "npm run clean",
"build": "tsc",
"prebuild": "npm run clean && npm run lint",
"build": "tsc && npm run build:umd",
"build:es6": "tsc -m es6 --outDir dist/esm --moduleResolution node",
"build:webpack": "webpack --config webpack.config.js",
"build:umd": "webpack --config webpack.config.js",
"clean": "rm -rf ./dist",
"~build": "tsc --watch",
"test": "TS_NODE_FILES=true mocha -r ts-node/register test/**/*.test.ts",
Expand Down

0 comments on commit 6723ff8

Please sign in to comment.