Skip to content

Commit

Permalink
Chore/bump package.json (#61)
Browse files Browse the repository at this point in the history
* chore/bump package.json

* 3.2.2
  • Loading branch information
ishiko732 authored Dec 15, 2023
1 parent db3ee7b commit c41a161
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion example/example.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio,line-clamp"></script>
<script type="module">
import * as tsFsrs from 'https://cdn.jsdelivr.net/npm/ts-fsrs@3.2.0/+esm';
import * as tsFsrs from 'https://cdn.jsdelivr.net/npm/ts-fsrs@latest/+esm';
window.tsfsrs = tsFsrs
</script>
<title>TS-FSRS example</title>
Expand Down
11 changes: 4 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{
"name": "ts-fsrs",
"version": "3.2.1",
"description": "ts-fsrs is a TypeScript package used to implement the Free Spaced Repetition Scheduler (FSRS) algorithm. It helps developers apply FSRS to their flashcard applications, thereby improving the user learning experience.",
"main": "dist/ts-fsrs.js",
"module": "dist/ts-fsrs.mjs",
"browser": "dist/ts-fsrs.umd.js",
"version": "3.2.2",
"description": "ts-fsrs is a ES modules package based on TypeScript, used to implement the Free Spaced Repetition Scheduler (FSRS) algorithm. It helps developers apply FSRS to their flashcard applications, there by improving the user learning experience.",
"main": "dist/ts-fsrs.cjs.js",
"module": "dist/ts-fsrs.js",
"types": "dist/index.d.ts",
"type": "module",
"keywords": [
Expand Down Expand Up @@ -59,8 +58,6 @@
"files": [
"dist",
"README.md",
"README_CN.md",
"README_JP.md",
"LICENSE"
],
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/fsrs/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const default_w = [
];
export const default_enable_fuzz = false;

export const FSRSVersion: string = "3.2.1";
export const FSRSVersion: string = "3.2.2";

export const generatorParameters = (
props?: Partial<FSRSParameters>,
Expand Down

0 comments on commit c41a161

Please sign in to comment.