Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/lucky-ties-rhyme.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/mighty-otters-attack.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tame-pugs-brake.md

This file was deleted.

12 changes: 12 additions & 0 deletions packages/spectacle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 10.1.0

### Minor Changes

- Use tsup (instead of webpack) for browser/umd build ([#1268](https://github.com/FormidableLabs/spectacle/pull/1268))

- Export all code pane themes as part of the Spectacle package. ([#1266](https://github.com/FormidableLabs/spectacle/pull/1266))

### Patch Changes

- Bumped dependency of one-page.html to v10 ([#1265](https://github.com/FormidableLabs/spectacle/pull/1265))

## 10.0.0

### Major Changes
Expand Down
10 changes: 7 additions & 3 deletions packages/spectacle/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"name": "spectacle",
"version": "10.0.0",
"version": "10.1.0",
"description": "ReactJS Powered Presentation Framework",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"files": ["lib/"],
"files": [
"lib/"
],
"module": "lib/index.mjs",
"author": "Formidable Labs <hello@formidable.com>",
"license": "MIT",
Expand Down Expand Up @@ -73,7 +75,9 @@
},
"wireit": {
"build": {
"dependencies": ["build:lib"]
"dependencies": [
"build:lib"
]
},
"build:lib": {
"command": "nps tsup",
Expand Down