@codecademy/variance 0.20.0 → 0.20.1-alpha.25d8b9.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,6 +3,14 @@
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.20.1-alpha.25d8b9.0](https://github.com/Codecademy/gamut/compare/@codecademy/variance@0.20.0...@codecademy/variance@0.20.1-alpha.25d8b9.0) (2022-07-22)
7
+
8
+ **Note:** Version bump only for package @codecademy/variance
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.20.0](https://github.com/Codecademy/gamut/compare/@codecademy/variance@0.19.0...@codecademy/variance@0.20.0) (2022-01-25)
7
15
 
8
16
 
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016 Ryzac, Inc.
3
+ Copyright (c) 2022 Codecademy LLC
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codecademy/variance",
3
3
  "description": "Constraint based CSS in JS for building scalable design systems",
4
- "version": "0.20.0",
4
+ "version": "0.20.1-alpha.25d8b9.0",
5
5
  "keywords": [
6
6
  "emotion",
7
7
  "css",
@@ -43,5 +43,5 @@
43
43
  "react": "17.0.2",
44
44
  "react-test-renderer": "17.0.2"
45
45
  },
46
- "gitHead": "c165b0b46bb25c859d51e541761858a39a2d2a26"
46
+ "gitHead": "d8dc8e0623177ea2cba250c117fb58392425968a"
47
47
  }
package/project.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "$schema": "../../../node_modules/nx/schemas/project-schema.json",
3
+ "sourceRoot": "packages/variance/src",
4
+ "projectType": "library",
5
+ "targets": {
6
+ "build": {
7
+ "outputs": ["{options.outputPath}"],
8
+ "executor": "nx:run-commands",
9
+ "options": {
10
+ "cwd": "packages/variance",
11
+ "outputPath": ["./dist"],
12
+ "commands": [
13
+ "rm -rf ./dist",
14
+ "tsc -b",
15
+ "babel ./src --out-dir ./dist --copy-files --extensions \".ts,.tsx\""
16
+ ],
17
+ "parallel": false
18
+ }
19
+ }
20
+ },
21
+ "tags": []
22
+ }