@prairielearn/browser-utils 1.1.0 → 1.1.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.
@@ -1,10 +1,10 @@
1
1
  CLI Building entry: src/index.ts
2
2
  CLI Using tsconfig: tsconfig.json
3
- CLI tsup v7.1.0
3
+ CLI tsup v7.2.0
4
4
  CLI Target: es2021
5
5
  CJS Build start
6
6
  ESM Build start
7
- CJS dist/index.js 4.22 KB
8
- CJS ⚡️ Build success in 125ms
9
7
  ESM dist/index.mjs 2.95 KB
10
- ESM ⚡️ Build success in 125ms
8
+ ESM ⚡️ Build success in 88ms
9
+ CJS dist/index.js 4.22 KB
10
+ CJS ⚡️ Build success in 90ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @prairielearn/browser-utils
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 10cc07dcc: Upgrade all dependencies
8
+ - Updated dependencies [10cc07dcc]
9
+ - @prairielearn/html@3.0.5
10
+
11
+ ## 1.1.1
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [098f581da]
16
+ - @prairielearn/html@3.0.4
17
+
3
18
  ## 1.1.0
4
19
 
5
20
  ### 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.2",
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.0.3",
24
+ "@prairielearn/html": "^3.0.5",
25
25
  "js-base64": "^3.7.5"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@prairielearn/tsconfig": "^0.0.0",
29
- "tsup": "^7.1.0",
29
+ "tsup": "^7.2.0",
30
30
  "typescript": "^5.1.6"
31
31
  }
32
32
  }
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
  }