@codecademy/codebytes 0.5.1-alpha.a075a9.0 → 0.6.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.5.1-alpha.a075a9.0](https://github.com/Codecademy/client-modules/compare/@codecademy/codebytes@0.5.0...@codecademy/codebytes@0.5.1-alpha.a075a9.0) (2022-01-31)
6
+ ## [0.6.0](https://github.com/Codecademy/client-modules/compare/@codecademy/codebytes@0.5.1...@codecademy/codebytes@0.6.0) (2022-01-31)
7
7
 
8
- **Note:** Version bump only for package @codecademy/codebytes
9
8
 
9
+ ### Features
10
+
11
+ * **Codebytes:** add tests for codebytes package disc 399 ([#21](https://github.com/Codecademy/client-modules/issues/21)) ([df3f780](https://github.com/Codecademy/client-modules/commit/df3f780237cbe31b620f7d88870612e1109ffb5b))
12
+
13
+
14
+
15
+ ### [0.5.1](https://github.com/Codecademy/client-modules/compare/@codecademy/codebytes@0.5.0...@codecademy/codebytes@0.5.1) (2022-01-29)
16
+
17
+
18
+ ### Reverts
10
19
 
20
+ * 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)
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.5.1-alpha.a075a9.0",
4
+ "version": "0.6.0",
5
5
  "author": "Codecademy Engineering <dev@codecademy.com>",
6
6
  "sideEffects": [
7
7
  "**/*.css",
@@ -39,7 +39,8 @@
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"
42
+ "build:watch": "yarn build && onchange ./src -- yarn build:compile && yarn build:types",
43
+ "lernaBuildTask": "yarn build"
43
44
  },
44
45
  "license": "MIT",
45
46
  "devDependencies": {
@@ -56,5 +57,5 @@
56
57
  "publishConfig": {
57
58
  "access": "public"
58
59
  },
59
- "gitHead": "54275e958de6d8d415eb53f7dee804ee5a170e2a"
60
+ "gitHead": "f91c27a20a0cf17abb45461983bd3bd2f5b4c368"
60
61
  }
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
  }