@prairielearn/browser-utils 1.1.9 → 1.1.11

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.
@@ -1,10 +1,10 @@
1
1
  CLI Building entry: src/index.ts
2
2
  CLI Using tsconfig: tsconfig.json
3
3
  CLI tsup v8.0.1
4
- CLI Target: es2021
4
+ CLI Target: es2022
5
5
  CJS Build start
6
6
  ESM Build start
7
7
  ESM dist/index.mjs 2.95 KB
8
- ESM ⚡️ Build success in 92ms
8
+ ESM ⚡️ Build success in 63ms
9
9
  CJS dist/index.js 4.22 KB
10
- CJS ⚡️ Build success in 92ms
10
+ CJS ⚡️ Build success in 63ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @prairielearn/browser-utils
2
2
 
3
+ ## 1.1.11
4
+
5
+ ### Patch Changes
6
+
7
+ - dce0fa3: Upgrade all JavaScript dependencies
8
+ - Updated dependencies [dce0fa3]
9
+ - @prairielearn/html@3.1.4
10
+
11
+ ## 1.1.10
12
+
13
+ ### Patch Changes
14
+
15
+ - abfd5cc: Upgrade all JavaScript dependencies
16
+ - Updated dependencies [abfd5cc]
17
+ - @prairielearn/html@3.1.3
18
+
3
19
  ## 1.1.9
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prairielearn/browser-utils",
3
- "version": "1.1.9",
3
+ "version": "1.1.11",
4
4
  "main": "dist/index.js",
5
5
  "sideEffects": false,
6
6
  "repository": {
@@ -21,12 +21,12 @@
21
21
  "dev": "tsup --watch src/index.ts"
22
22
  },
23
23
  "dependencies": {
24
- "@prairielearn/html": "^3.1.2",
25
- "js-base64": "^3.7.5"
24
+ "@prairielearn/html": "^3.1.4",
25
+ "js-base64": "^3.7.6"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@prairielearn/tsconfig": "^0.0.0",
29
29
  "tsup": "^8.0.1",
30
- "typescript": "^5.2.2"
30
+ "typescript": "^5.3.3"
31
31
  }
32
32
  }
package/tsconfig.json CHANGED
@@ -5,6 +5,6 @@
5
5
  "rootDir": "./src",
6
6
  // Unlike other PrairieLearn packages, we use another tool to actually
7
7
  // emit transpiled JavaScript. See note in `README.md`.
8
- "emitDeclarationOnly": true
9
- }
8
+ "emitDeclarationOnly": true,
9
+ },
10
10
  }