@lichess-org/pgn-viewer 2.5.0 → 2.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/demo/lichess-pgn-viewer.js +336 -224
- package/dist/config.d.ts +1 -1
- package/dist/interfaces.d.ts +2 -2
- package/dist/lichess-pgn-viewer.min.js +4 -4
- package/dist/pgnViewer.d.ts +2 -2
- package/dist/pgnViewer.js +1 -1
- package/dist/pgnViewer.js.map +1 -1
- package/dist/translation.d.ts +1 -1
- package/dist/translation.js +5 -2
- package/dist/translation.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/view/accessibleBoard.js +3 -3
- package/dist/view/accessibleBoard.js.map +1 -1
- package/dist/view/main.d.ts +1 -1
- package/dist/view/main.js +1 -1
- package/dist/view/main.js.map +1 -1
- package/dist/view/menu.d.ts +3 -2
- package/dist/view/menu.js +2 -2
- package/dist/view/menu.js.map +1 -1
- package/dist/view/util.d.ts +1 -1
- package/package.json +2 -2
- package/src/interfaces.ts +2 -2
- package/src/pgnViewer.ts +3 -3
- package/src/translation.ts +5 -2
- package/src/view/accessibleBoard.ts +3 -3
- package/src/view/main.ts +2 -2
- package/src/view/menu.ts +3 -3
- package/src/view/util.ts +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Lichess PGN Viewer
|
|
2
2
|
|
|
3
|
+
[](https://github.com/lichess-org/pgn-viewer/actions/workflows/ci.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/@lichess-org/pgn-viewer)
|
|
5
|
+
|
|
3
6
|
PGN viewer widget, designed to be embedded in content pages.
|
|
4
7
|
|
|
5
8
|
This won't replace a fully featured [analysis board](https://lichess.org/analysis).
|
|
@@ -136,3 +139,12 @@ pnpm test:watch
|
|
|
136
139
|
- Vue.js: [dragunovartem99/vue-pgn-viewer](https://github.com/dragunovartem99/vue-pgn-viewer)
|
|
137
140
|
|
|
138
141
|
More? Please make a pull request to include it here.
|
|
142
|
+
|
|
143
|
+
## Release procedure
|
|
144
|
+
|
|
145
|
+
- https://github.com/lichess-org/pgn-viewer/actions/workflows/release.yaml
|
|
146
|
+
- [Run workflow]
|
|
147
|
+
- Branch: master
|
|
148
|
+
- Version tag: vX.Y.Z
|
|
149
|
+
|
|
150
|
+
The release workflow will increment the package.json version, create the tag, the github release, and publish to npm
|