@codecademy/codebytes 0.4.1-alpha.f0c8c2.0 → 0.5.1-alpha.4060ed.0

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,11 +3,21 @@
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.4.1-alpha.f0c8c2.0](https://github.com/Codecademy/client-modules/compare/@codecademy/codebytes@0.4.0...@codecademy/codebytes@0.4.1-alpha.f0c8c2.0) (2022-01-26)
6
+ ### [0.5.1-alpha.4060ed.0](https://github.com/Codecademy/client-modules/compare/@codecademy/codebytes@0.5.0...@codecademy/codebytes@0.5.1-alpha.4060ed.0) (2022-01-29)
7
7
 
8
- **Note:** Version bump only for package @codecademy/codebytes
9
8
 
9
+ ### Reverts
10
10
 
11
+ * Revert "add yarn build task for codebytes (#23)" (#24) ([209a493](https://github.com/Codecademy/client-modules/commit/209a4935066ed1cf7e6932281218338c67ab088b)), closes [#23](https://github.com/Codecademy/client-modules/issues/23) [#24](https://github.com/Codecademy/client-modules/issues/24)
12
+
13
+
14
+
15
+ ## [0.5.0](https://github.com/Codecademy/client-modules/compare/@codecademy/codebytes@0.4.0...@codecademy/codebytes@0.5.0) (2022-01-27)
16
+
17
+
18
+ ### Features
19
+
20
+ * **Codebytes:** Refactor tracking in Codebytes ([#19](https://github.com/Codecademy/client-modules/issues/19)) ([494a944](https://github.com/Codecademy/client-modules/commit/494a94441cfbc1ea563f997607821131a7f1e007))
11
21
 
12
22
 
13
23
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codecademy/codebytes",
3
3
  "description": "Codebytes Code Editor",
4
- "version": "0.4.1-alpha.f0c8c2.0",
4
+ "version": "0.5.1-alpha.4060ed.0",
5
5
  "author": "Codecademy Engineering <dev@codecademy.com>",
6
6
  "sideEffects": [
7
7
  "**/*.css",
@@ -37,7 +37,8 @@
37
37
  "build:clean": "rm -rf dist",
38
38
  "build:types": "tsc --emitDeclarationOnly",
39
39
  "build": "yarn build:clean && yarn build:compile && yarn build:types",
40
- "build:watch": "yarn build && onchange ./src -- yarn build:compile && yarn build:types"
40
+ "build:watch": "yarn build && onchange ./src -- yarn build:compile && yarn build:types",
41
+ "lernaBuildTask": "yarn build"
41
42
  },
42
43
  "license": "MIT",
43
44
  "devDependencies": {
@@ -49,5 +50,5 @@
49
50
  "publishConfig": {
50
51
  "access": "public"
51
52
  },
52
- "gitHead": "78e45ee9480d80b9751afd3aae26b6889b4ac8ae"
53
+ "gitHead": "f7ab904a9e4a3a847ca4d14d2cd017ff0332d2c1"
53
54
  }
package/tsconfig.json CHANGED
@@ -1,4 +1,8 @@
1
1
  {
2
2
  "extends": "../../tsconfig.json",
3
- "include": ["../../typings/*.d.ts", "./src/**/*.ts", "./src/**/*.tsx"]
3
+ "include": ["../../typings/*.d.ts", "./src/**/*.ts", "./src/**/*.tsx"],
4
+ "compilerOptions": {
5
+ "allowJs": true,
6
+ "outDir": "./dist"
7
+ }
4
8
  }