@codecademy/codebytes 0.6.2-alpha.0500c8.0 → 0.6.4

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/CHANGELOG.md CHANGED
@@ -3,7 +3,23 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ### [0.6.2-alpha.0500c8.0](https://github.com/Codecademy/client-modules/compare/@codecademy/codebytes@0.6.1...@codecademy/codebytes@0.6.2-alpha.0500c8.0) (2022-02-01)
6
+ ### [0.6.4](https://github.com/Codecademy/client-modules/compare/@codecademy/codebytes@0.6.3...@codecademy/codebytes@0.6.4) (2022-02-02)
7
+
8
+ **Note:** Version bump only for package @codecademy/codebytes
9
+
10
+
11
+
12
+
13
+
14
+ ### [0.6.3](https://github.com/Codecademy/client-modules/compare/@codecademy/codebytes@0.6.2...@codecademy/codebytes@0.6.3) (2022-02-02)
15
+
16
+ **Note:** Version bump only for package @codecademy/codebytes
17
+
18
+
19
+
20
+
21
+
22
+ ### [0.6.2](https://github.com/Codecademy/client-modules/compare/@codecademy/codebytes@0.6.1...@codecademy/codebytes@0.6.2) (2022-02-02)
7
23
 
8
24
  **Note:** Version bump only for package @codecademy/codebytes
9
25
 
@@ -1,10 +1,8 @@
1
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2
-
3
1
  import { createTracker } from '@codecademy/tracking';
4
2
  var IS_DEV = process.env.NODE_ENV === 'development'; // TODO: confirm tracking details and implementation DISC-447
5
3
 
6
4
  var tracker = createTracker({
7
- apiBaseUrl: (typeof window === "undefined" ? "undefined" : _typeof(window)) === undefined ? 'https://www.codecademy.com' : window.location.origin,
5
+ apiBaseUrl: typeof window === 'undefined' ? 'https://www.codecademy.com' : window.location.origin,
8
6
  verbose: IS_DEV
9
7
  });
10
8
  var trackUserClick = tracker.click,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codecademy/codebytes",
3
3
  "description": "Codebytes Code Editor",
4
- "version": "0.6.2-alpha.0500c8.0",
4
+ "version": "0.6.4",
5
5
  "author": "Codecademy Engineering <dev@codecademy.com>",
6
6
  "sideEffects": [
7
7
  "**/*.css",
@@ -16,22 +16,22 @@
16
16
  "url": "git@github.com:Codecademy/client-modules.git"
17
17
  },
18
18
  "peerDependencies": {
19
- "@codecademy/tracking": "0.18.0",
20
- "react": ">=16.8.1",
21
- "react-dom": ">=16.8.1"
22
- },
23
- "dependencies": {
24
19
  "@codecademy/gamut": "*",
25
20
  "@codecademy/gamut-icons": "*",
26
21
  "@codecademy/gamut-styles": "*",
22
+ "@codecademy/tracking": ">=0.17.0",
27
23
  "@codecademy/variance": "*",
24
+ "react": ">=16.8.1",
25
+ "react-dom": ">=16.8.1"
26
+ },
27
+ "dependencies": {
28
28
  "@emotion/react": "^11.4.0",
29
29
  "@emotion/styled": "^11.3.0",
30
30
  "@monaco-editor/react": "4.3.1",
31
31
  "js-base64": "^3.6.0",
32
32
  "jsuri": "^1.3.1",
33
33
  "monaco-editor": ">= 0.25.0 < 1",
34
- "react-resize-observer": "1.1.1"
34
+ "react-resize-observer": "^1.1.1"
35
35
  },
36
36
  "scripts": {
37
37
  "verify": "tsc --noEmit",
@@ -39,13 +39,16 @@
39
39
  "build:clean": "rm -rf dist",
40
40
  "build:types": "tsc --emitDeclarationOnly",
41
41
  "build": "yarn build:clean && yarn build:compile && yarn build:types",
42
- "build:watch": "yarn build && onchange ./src -- yarn build:compile && yarn build:types",
43
- "lernaBuildTask": "yarn build"
42
+ "build:watch": "yarn build && onchange ./src -- yarn build:compile && yarn build:types"
44
43
  },
45
44
  "license": "MIT",
46
45
  "devDependencies": {
46
+ "@codecademy/gamut": "*",
47
+ "@codecademy/gamut-icons": "*",
48
+ "@codecademy/gamut-styles": "*",
47
49
  "@codecademy/gamut-tests": "*",
48
- "@codecademy/tracking": "0.18.0",
50
+ "@codecademy/tracking": "^0.18.1",
51
+ "@codecademy/variance": "*",
49
52
  "@emotion/jest": "^11.3.0",
50
53
  "@testing-library/dom": "^7.31.2",
51
54
  "@testing-library/react": "^11.0.4",
@@ -61,5 +64,5 @@
61
64
  "files": [
62
65
  "dist/**"
63
66
  ],
64
- "gitHead": "a4670a6a34d2dd5793d6d39d6b7820147ac6c6af"
67
+ "gitHead": "2dc548591747ffb088f89b3dbf1c70e9fbd946f9"
65
68
  }