@codecademy/gamut-kit 1.0.1-alpha.4d8dae.0 → 67.0.0-alpha.387605.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 +5567 -1
- package/LICENSE +1 -1
- package/README.md +4 -2
- package/jest.config.js +1 -0
- package/package.json +12 -10
- package/project.json +6 -0
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
# GAMUT KIT
|
|
1
|
+
# GAMUT KIT (& KABOODLE)
|
|
2
2
|
|
|
3
|
-
A single package that includes all of the
|
|
3
|
+
A single package that includes all of the Gamut-related modules
|
|
4
|
+
|
|
5
|
+
Include this package in your application instead of the individual packages to simplify version management.
|
package/jest.config.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../../jest.config.base')('gamut-kit');
|
package/package.json
CHANGED
|
@@ -1,24 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-kit",
|
|
3
3
|
"description": "Styleguide & Component library for Codecademy",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "67.0.0-alpha.387605.0",
|
|
5
5
|
"author": "Codecademy Engineering <dev@codecademy.com>",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git@github.com:Codecademy/
|
|
8
|
+
"url": "git@github.com:Codecademy/gamut.git"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@codecademy/gamut": "
|
|
12
|
-
"@codecademy/gamut-icons": "
|
|
13
|
-
"@codecademy/gamut-illustrations": "
|
|
14
|
-
"@codecademy/gamut-labs": "
|
|
15
|
-
"@codecademy/gamut-
|
|
16
|
-
"@codecademy/gamut-
|
|
17
|
-
"@codecademy/gamut-tests": "
|
|
11
|
+
"@codecademy/gamut": "67.0.0-alpha.387605.0",
|
|
12
|
+
"@codecademy/gamut-icons": "67.0.0-alpha.387605.0",
|
|
13
|
+
"@codecademy/gamut-illustrations": "67.0.0-alpha.387605.0",
|
|
14
|
+
"@codecademy/gamut-labs": "67.0.0-alpha.387605.0",
|
|
15
|
+
"@codecademy/gamut-patterns": "67.0.0-alpha.387605.0",
|
|
16
|
+
"@codecademy/gamut-styles": "67.0.0-alpha.387605.0",
|
|
17
|
+
"@codecademy/gamut-tests": "67.0.0-alpha.387605.0",
|
|
18
|
+
"@codecademy/variance": "67.0.0-alpha.387605.0",
|
|
19
|
+
"component-test-setup": "^0.3.1"
|
|
18
20
|
},
|
|
19
21
|
"license": "MIT",
|
|
20
22
|
"publishConfig": {
|
|
21
23
|
"access": "public"
|
|
22
24
|
},
|
|
23
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "27eb467164f53a486ae354760442adc15073435c"
|
|
24
26
|
}
|