@prairielearn/browser-utils 1.1.0 → 1.1.1

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.
@@ -5,6 +5,6 @@
5
5
  CJS Build start
6
6
  ESM Build start
7
7
  CJS dist/index.js 4.22 KB
8
- CJS ⚡️ Build success in 125ms
8
+ CJS ⚡️ Build success in 146ms
9
9
  ESM dist/index.mjs 2.95 KB
10
- ESM ⚡️ Build success in 125ms
10
+ ESM ⚡️ Build success in 138ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @prairielearn/browser-utils
2
2
 
3
+ ## 1.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [098f581da]
8
+ - @prairielearn/html@3.0.4
9
+
3
10
  ## 1.1.0
4
11
 
5
12
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prairielearn/browser-utils",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "main": "dist/index.js",
5
5
  "sideEffects": false,
6
6
  "repository": {
@@ -21,7 +21,7 @@
21
21
  "dev": "tsup --watch src/index.ts"
22
22
  },
23
23
  "dependencies": {
24
- "@prairielearn/html": "^3.0.3",
24
+ "@prairielearn/html": "^3.0.4",
25
25
  "js-base64": "^3.7.5"
26
26
  },
27
27
  "devDependencies": {
package/tsconfig.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "outDir": "./dist",
5
5
  "rootDir": "./src",
6
6
  // Unlike other PrairieLearn packages, we use another tool to actually
7
- // emit transpiled JavaScript. See note in `README.md`.
8
- "emitDeclarationOnly": true,
9
- },
7
+ // emit transpiled JavaScript. See note in `README.md`.
8
+ "emitDeclarationOnly": true
9
+ }
10
10
  }