Skip to content

Commit 3bbeb3a

Browse files
committed
chore(release): Publish v1.0.0-alpha.1.
1 parent 5ea1ee2 commit 3bbeb3a

32 files changed

+217
-45
lines changed

Diff for: CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0-alpha.1](https://github.com/linkedin/css-blocks/compare/v1.0.0-alpha.0...v1.0.0-alpha.1) (2019-12-10)
7+
8+
9+
### Bug Fixes
10+
11+
* Discover new glimmer components when they are added while watching. ([f3386ac](https://github.com/linkedin/css-blocks/commit/f3386ac1ca2ce13142310f2ad7f7f1b81b3fee4c))
12+
* Fix dev build performance issue. ([bf9bd06](https://github.com/linkedin/css-blocks/commit/bf9bd069e96bc47fbc6229f60625fe5ebbe82d28)), closes [#357](https://github.com/linkedin/css-blocks/issues/357)
13+
* Must invalidate the handlebars template cache across processes. ([2afd213](https://github.com/linkedin/css-blocks/commit/2afd21332d0d0cb30a5203ec1c5a08fd3d746c2f))
14+
* Properly prune unprocessed CSS Block files from build output. ([076973d](https://github.com/linkedin/css-blocks/commit/076973dc8ae1f25dbd94163d03ab1bdd021932c3))
15+
* The API for queue.drain changed in [email protected]. ([cc3da9c](https://github.com/linkedin/css-blocks/commit/cc3da9cac6370d00b3489c88ea8756fe72631e82))
16+
* Work-around because node-sass doesn't run in a vscode context. ([b10f34e](https://github.com/linkedin/css-blocks/commit/b10f34e1fb3c8e1c147de3802fd5e04ede458d1c))
17+
18+
19+
### Features
20+
21+
* Adds find references capability to language server. ([fbef5a8](https://github.com/linkedin/css-blocks/commit/fbef5a89df706f4d422dc23404ba437da34fa27c))
22+
* Load the css-blocks configuration file. ([6dc7397](https://github.com/linkedin/css-blocks/commit/6dc7397102b95a1570015f32424940e27c208d16))
23+
24+
25+
26+
27+
628
# [1.0.0-alpha.0](https://github.com/LinkedIn/css-blocks/compare/v0.24.0...v1.0.0-alpha.0) (2019-11-22)
729

830

Diff for: lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-alpha.0",
2+
"version": "1.0.0-alpha.1",
33
"packages": [
44
"packages/@css-blocks/*"
55
],

Diff for: packages/@css-blocks/broccoli/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0-alpha.1](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/broccoli/compare/v1.0.0-alpha.0...v1.0.0-alpha.1) (2019-12-10)
7+
8+
9+
### Bug Fixes
10+
11+
* Discover new glimmer components when they are added while watching. ([f3386ac](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/broccoli/commit/f3386ac1ca2ce13142310f2ad7f7f1b81b3fee4c))
12+
* Fix dev build performance issue. ([bf9bd06](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/broccoli/commit/bf9bd069e96bc47fbc6229f60625fe5ebbe82d28)), closes [#357](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/broccoli/issues/357)
13+
14+
15+
16+
17+
618
# [1.0.0-alpha.0](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/broccoli/compare/v0.24.0...v1.0.0-alpha.0) (2019-11-22)
719

820

Diff for: packages/@css-blocks/broccoli/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@css-blocks/broccoli",
3-
"version": "1.0.0-alpha.0",
3+
"version": "1.0.0-alpha.1",
44
"description": "CSS Blocks Broccoli Addon",
55
"main": "dist/src/index.js",
66
"author": "Adam Miller <[email protected]>",
@@ -30,15 +30,15 @@
3030
"access": "public"
3131
},
3232
"devDependencies": {
33-
"@css-blocks/code-style": "^0.24.0",
34-
"@css-blocks/glimmer": "^1.0.0-alpha.0",
33+
"@css-blocks/code-style": "^1.0.0-alpha.1",
34+
"@css-blocks/glimmer": "^1.0.0-alpha.1",
3535
"@types/fs-extra": "^8.0.0",
3636
"@types/glob": "^7.1.1",
3737
"broccoli-test-helper": "^2.0.0",
3838
"watch": "^1.0.2"
3939
},
4040
"dependencies": {
41-
"@css-blocks/core": "^1.0.0-alpha.0",
41+
"@css-blocks/core": "^1.0.0-alpha.1",
4242
"@glimmer/compiler": "^0.42.0",
4343
"@glimmer/syntax": "^0.42.0",
4444
"@opticss/template-api": "^0.6.3",

Diff for: packages/@css-blocks/cli/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0-alpha.1](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/cli/compare/v1.0.0-alpha.0...v1.0.0-alpha.1) (2019-12-10)
7+
8+
**Note:** Version bump only for package @css-blocks/cli
9+
10+
11+
12+
13+
614
# [1.0.0-alpha.0](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/cli/compare/v0.24.0...v1.0.0-alpha.0) (2019-11-22)
715

816

Diff for: packages/@css-blocks/cli/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@css-blocks/cli",
3-
"version": "1.0.0-alpha.0",
3+
"version": "1.0.0-alpha.1",
44
"description": "Command line interface to css-blocks.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -47,7 +47,7 @@
4747
"access": "public"
4848
},
4949
"devDependencies": {
50-
"@css-blocks/code-style": "^0.24.0",
50+
"@css-blocks/code-style": "^1.0.0-alpha.1",
5151
"@types/fs-extra": "^8.0.0",
5252
"@types/node-sass": "^4.11.0",
5353
"@types/yargs": "^13.0.0",
@@ -56,8 +56,8 @@
5656
"watch": "^1.0.2"
5757
},
5858
"dependencies": {
59-
"@css-blocks/config": "^1.0.0-alpha.0",
60-
"@css-blocks/core": "^1.0.0-alpha.0",
59+
"@css-blocks/config": "^1.0.0-alpha.1",
60+
"@css-blocks/core": "^1.0.0-alpha.1",
6161
"chalk": "^2.4.2",
6262
"debug": "^4.1.1",
6363
"fs-extra": "^8.0.0",

Diff for: packages/@css-blocks/code-style/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0-alpha.1](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/code-style/compare/v1.0.0-alpha.0...v1.0.0-alpha.1) (2019-12-10)
7+
8+
**Note:** Version bump only for package @css-blocks/code-style
9+
10+
11+
12+
13+
614
# [0.24.0](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/code-style/compare/v0.23.2...v0.24.0) (2019-09-16)
715

816
**Note:** Version bump only for package @css-blocks/code-style

Diff for: packages/@css-blocks/code-style/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"author": "Chris Eppstein",
44
"description": "Configuration and tools to manage the code style of css-blocks.",
55
"license": "BSD-2-Clause",
6-
"version": "0.24.0",
6+
"version": "1.0.0-alpha.1",
77
"main": "configs/tslint.interactive.json",
88
"readme": "README.md",
99
"keywords": [

Diff for: packages/@css-blocks/config/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0-alpha.1](https://github.com/linkedin/css-blocks/compare/v1.0.0-alpha.0...v1.0.0-alpha.1) (2019-12-10)
7+
8+
**Note:** Version bump only for package @css-blocks/config
9+
10+
11+
12+
13+
614
# [1.0.0-alpha.0](https://github.com/linkedin/css-blocks/compare/v0.24.0...v1.0.0-alpha.0) (2019-11-22)
715

816

Diff for: packages/@css-blocks/config/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@css-blocks/config",
3-
"version": "1.0.0-alpha.0",
3+
"version": "1.0.0-alpha.1",
44
"description": "Standardized access to css-blocks configuration files.",
55
"main": "dist/src/index.js",
66
"types": "dist/src/index.d.ts",
@@ -42,13 +42,13 @@
4242
"access": "public"
4343
},
4444
"devDependencies": {
45-
"@css-blocks/code-style": "^0.24.0",
45+
"@css-blocks/code-style": "^1.0.0-alpha.1",
4646
"@types/lodash.merge": "^4.6.6",
4747
"typescript": "~3.5",
4848
"watch": "^1.0.2"
4949
},
5050
"dependencies": {
51-
"@css-blocks/core": "^1.0.0-alpha.0",
51+
"@css-blocks/core": "^1.0.0-alpha.1",
5252
"cosmiconfig": "^6.0.0",
5353
"debug": "^4.1.1",
5454
"lodash.merge": "^4.6.2"

Diff for: packages/@css-blocks/core/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0-alpha.1](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/core/compare/v1.0.0-alpha.0...v1.0.0-alpha.1) (2019-12-10)
7+
8+
9+
### Bug Fixes
10+
11+
* Fix dev build performance issue. ([bf9bd06](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/core/commit/bf9bd069e96bc47fbc6229f60625fe5ebbe82d28)), closes [#357](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/core/issues/357)
12+
* The API for queue.drain changed in [email protected]. ([cc3da9c](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/core/commit/cc3da9cac6370d00b3489c88ea8756fe72631e82))
13+
14+
15+
16+
17+
618
# [1.0.0-alpha.0](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/core/compare/v0.24.0...v1.0.0-alpha.0) (2019-11-22)
719

820

Diff for: packages/@css-blocks/core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@css-blocks/core",
3-
"version": "1.0.0-alpha.0",
3+
"version": "1.0.0-alpha.1",
44
"description": "Fast, maintainable, optimal, component-oriented CSS.",
55
"main": "dist/src/index.js",
66
"scripts": {
@@ -38,7 +38,7 @@
3838
"access": "public"
3939
},
4040
"devDependencies": {
41-
"@css-blocks/code-style": "^0.24.0",
41+
"@css-blocks/code-style": "^1.0.0-alpha.1",
4242
"@types/async": "^3.0.3",
4343
"@types/debug": "4.1.5",
4444
"typescript": "~3.6"

Diff for: packages/@css-blocks/ember-cli/CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0-alpha.1](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/ember-cli/compare/v1.0.0-alpha.0...v1.0.0-alpha.1) (2019-12-10)
7+
8+
9+
### Bug Fixes
10+
11+
* Fix dev build performance issue. ([bf9bd06](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/ember-cli/commit/bf9bd069e96bc47fbc6229f60625fe5ebbe82d28)), closes [#357](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/ember-cli/issues/357)
12+
* Must invalidate the handlebars template cache across processes. ([2afd213](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/ember-cli/commit/2afd21332d0d0cb30a5203ec1c5a08fd3d746c2f))
13+
* Properly prune unprocessed CSS Block files from build output. ([076973d](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/ember-cli/commit/076973dc8ae1f25dbd94163d03ab1bdd021932c3))
14+
15+
16+
### Features
17+
18+
* Load the css-blocks configuration file. ([6dc7397](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/ember-cli/commit/6dc7397102b95a1570015f32424940e27c208d16))
19+
20+
21+
22+
23+
624
# [1.0.0-alpha.0](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/ember-cli/compare/v0.24.0...v1.0.0-alpha.0) (2019-11-22)
725

826

Diff for: packages/@css-blocks/ember-cli/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-alpha.0",
2+
"version": "1.0.0-alpha.1",
33
"name": "@css-blocks/ember-cli",
44
"description": "Use CSS Blocks with your Ember and Glimmer projects.",
55
"keywords": [
@@ -22,8 +22,8 @@
2222
"test:all": "ember try:each"
2323
},
2424
"dependencies": {
25-
"@css-blocks/broccoli": "^1.0.0-alpha.0",
26-
"@css-blocks/glimmer": "^1.0.0-alpha.0",
25+
"@css-blocks/broccoli": "^1.0.0-alpha.1",
26+
"@css-blocks/glimmer": "^1.0.0-alpha.1",
2727
"@glimmer/application-pipeline": "^0.15.0",
2828
"broccoli-concat": "^3.7.3",
2929
"broccoli-funnel": "^2.0.1",

Diff for: packages/@css-blocks/glimmer/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0-alpha.1](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/glimmer/compare/v1.0.0-alpha.0...v1.0.0-alpha.1) (2019-12-10)
7+
8+
9+
### Bug Fixes
10+
11+
* Discover new glimmer components when they are added while watching. ([f3386ac](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/glimmer/commit/f3386ac1ca2ce13142310f2ad7f7f1b81b3fee4c))
12+
* Fix dev build performance issue. ([bf9bd06](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/glimmer/commit/bf9bd069e96bc47fbc6229f60625fe5ebbe82d28)), closes [#357](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/glimmer/issues/357)
13+
14+
15+
16+
17+
618
# [1.0.0-alpha.0](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/glimmer/compare/v0.24.0...v1.0.0-alpha.0) (2019-11-22)
719

820

Diff for: packages/@css-blocks/glimmer/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@css-blocks/glimmer",
3-
"version": "1.0.0-alpha.0",
3+
"version": "1.0.0-alpha.1",
44
"description": "Statically analyze & rewrite the css-block styles in Handlebars templates.",
55
"main": "dist/cjs/src/index.js",
66
"types": "dist/cjs/src/index.d.ts",
@@ -49,15 +49,15 @@
4949
"access": "public"
5050
},
5151
"devDependencies": {
52-
"@css-blocks/code-style": "^0.24.0",
52+
"@css-blocks/code-style": "^1.0.0-alpha.1",
5353
"@types/fs-extra": "^8.0.0",
5454
"@types/glob": "^7.1.1",
5555
"typescript": "~3.6",
5656
"watch": "^1.0.2"
5757
},
5858
"dependencies": {
5959
"@amiller-gh/glimmer-analyzer": "^0.4.0",
60-
"@css-blocks/core": "^1.0.0-alpha.0",
60+
"@css-blocks/core": "^1.0.0-alpha.1",
6161
"@glimmer/compiler": "^0.42.0",
6262
"@glimmer/resolution-map-builder": "0.5.1",
6363
"@glimmer/resolver": "^0.4.3",

Diff for: packages/@css-blocks/jsx/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0-alpha.1](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/jsx/compare/v1.0.0-alpha.0...v1.0.0-alpha.1) (2019-12-10)
7+
8+
**Note:** Version bump only for package @css-blocks/jsx
9+
10+
11+
12+
13+
614
# [1.0.0-alpha.0](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/jsx/compare/v0.24.0...v1.0.0-alpha.0) (2019-11-22)
715

816

Diff for: packages/@css-blocks/jsx/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "@css-blocks/jsx",
4-
"version": "1.0.0-alpha.0",
4+
"version": "1.0.0-alpha.1",
55
"description": "Statically analyzes JSX files for CSS Blocks use.",
66
"main": "dist/src/index.js",
77
"types": "dist/src/index.d.ts",
@@ -42,9 +42,9 @@
4242
"access": "public"
4343
},
4444
"devDependencies": {
45-
"@css-blocks/code-style": "^0.24.0",
46-
"@css-blocks/runtime": "^0.24.0",
47-
"@css-blocks/test-utils": "^0.24.0",
45+
"@css-blocks/code-style": "^1.0.0-alpha.1",
46+
"@css-blocks/runtime": "^1.0.0-alpha.1",
47+
"@css-blocks/test-utils": "^1.0.0-alpha.1",
4848
"babel-core": "^6.25.0",
4949
"obj-str": "^1.0.0",
5050
"preact": "^8.2.1"
@@ -53,7 +53,7 @@
5353
"@css-blocks/runtime": "^0.23.0"
5454
},
5555
"dependencies": {
56-
"@css-blocks/core": "^1.0.0-alpha.0",
56+
"@css-blocks/core": "^1.0.0-alpha.1",
5757
"@opticss/template-api": "^0.6.3",
5858
"@opticss/util": "^0.7.0",
5959
"babel-traverse": "7.0.0-beta.3",

Diff for: packages/@css-blocks/language-server/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0-alpha.1](https://github.com/LinkedIn/css-blocks/compare/v1.0.0-alpha.0...v1.0.0-alpha.1) (2019-12-10)
7+
8+
9+
### Bug Fixes
10+
11+
* Work-around because node-sass doesn't run in a vscode context. ([b10f34e](https://github.com/LinkedIn/css-blocks/commit/b10f34e1fb3c8e1c147de3802fd5e04ede458d1c))
12+
13+
14+
### Features
15+
16+
* Adds find references capability to language server. ([fbef5a8](https://github.com/LinkedIn/css-blocks/commit/fbef5a89df706f4d422dc23404ba437da34fa27c))
17+
18+
19+
20+
21+
622
# [1.0.0-alpha.0](https://github.com/LinkedIn/css-blocks/compare/v0.24.0...v1.0.0-alpha.0) (2019-11-22)
723

824

0 commit comments

Comments
 (0)