Skip to content

Commit 784cd44

Browse files
committed
chore(release): Publish v1.0.0.
1 parent 1783a7e commit 784cd44

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+422
-65
lines changed

CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,38 @@
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](https://github.com/linkedin/css-blocks/compare/v1.0.0-alpha.7...v1.0.0) (2020-04-04)
7+
8+
9+
### Bug Fixes
10+
11+
* Glimmer apps have a different naming system. ([9b8f73c](https://github.com/linkedin/css-blocks/commit/9b8f73cd30b4d0dbd77401caa7488f1f81f4608d))
12+
* Some packages were erroneously marked as MIT license. ([6ba8462](https://github.com/linkedin/css-blocks/commit/6ba84624ac5908e4454b4db9e821f12d04d6ab29))
13+
* Work around for husky regression. ([1783a7e](https://github.com/linkedin/css-blocks/commit/1783a7e93c4fa615a51bfc245265de9a7a3df418))
14+
15+
16+
### chore
17+
18+
* Drop support for node 6, 8, and 11. ([3806e82](https://github.com/linkedin/css-blocks/commit/3806e82124814fbea99aa47353cd2c171b1f55ec))
19+
20+
21+
### Features
22+
23+
* Optional Preprocessors & library/application API contract. ([80aba33](https://github.com/linkedin/css-blocks/commit/80aba33c818c1285e35840929bf1fbbb80698c36))
24+
* **eyeglass:** Adds new package that enables simple Eyeglass support. ([6f92d19](https://github.com/linkedin/css-blocks/commit/6f92d19c4362ca5e0b3971977d645eda5682c928))
25+
* **style-of:** Allows positional arguements to be passed. ([2eb25a8](https://github.com/linkedin/css-blocks/commit/2eb25a81a32d1d7cfceac7d05bc57fd04001dc15))
26+
* **style-of:** Errors if unsupported params have been passed. ([cbee078](https://github.com/linkedin/css-blocks/commit/cbee078b08008bceef4fe45f09d32eed9d7b4a15))
27+
28+
29+
### BREAKING CHANGES
30+
31+
* Node 8 is now out of maintainence so we have dropped support for node 6
32+
and 8. Node 11 is no longer needed because node 12 was released.
33+
34+
35+
36+
37+
638
# [1.0.0-alpha.7](https://github.com/linkedin/css-blocks/compare/v1.0.0-alpha.6...v1.0.0-alpha.7) (2020-02-23)
739

840

lerna.json

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

packages/@css-blocks/bem-to-blocks/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/bem-to-blocks/compare/v1.0.0-alpha.7...v1.0.0) (2020-04-04)
7+
8+
9+
### chore
10+
11+
* Drop support for node 6, 8, and 11. ([3806e82](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/bem-to-blocks/commit/3806e82124814fbea99aa47353cd2c171b1f55ec))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* Node 8 is now out of maintainence so we have dropped support for node 6
17+
and 8. Node 11 is no longer needed because node 12 was released.
18+
19+
20+
21+
22+
623
# [1.0.0-alpha.5](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/bem-to-blocks/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2020-02-14)
724

825

packages/@css-blocks/bem-to-blocks/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"author": "Ramitha Chitloor",
44
"description": "Tools to convert BEM files to CSS block files.",
55
"license": "BSD-2-Clause",
6-
"version": "1.0.0-alpha.5",
6+
"version": "1.0.0",
77
"main": "dist/src/index.js",
88
"types": "dist/src/index.d.ts",
99
"files": [
@@ -41,7 +41,7 @@
4141
"access": "public"
4242
},
4343
"dependencies": {
44-
"@css-blocks/code-style": "^1.0.0-alpha.1",
44+
"@css-blocks/code-style": "^1.0.0",
4545
"inquirer": "^7.0.3",
4646
"postcss": "^7.0.14",
4747
"postcss-selector-parser": "^6.0.2",

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](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/broccoli/compare/v1.0.0-alpha.7...v1.0.0) (2020-04-04)
7+
8+
9+
### Bug Fixes
10+
11+
* Glimmer apps have a different naming system. ([9b8f73c](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/broccoli/commit/9b8f73cd30b4d0dbd77401caa7488f1f81f4608d))
12+
* Some packages were erroneously marked as MIT license. ([6ba8462](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/broccoli/commit/6ba84624ac5908e4454b4db9e821f12d04d6ab29))
13+
14+
15+
16+
17+
618
# [1.0.0-alpha.7](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/broccoli/compare/v1.0.0-alpha.6...v1.0.0-alpha.7) (2020-02-23)
719

820

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.7",
3+
"version": "1.0.0",
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": "^1.0.0-alpha.1",
34-
"@css-blocks/glimmer": "^1.0.0-alpha.6",
33+
"@css-blocks/code-style": "^1.0.0",
34+
"@css-blocks/glimmer": "^1.0.0",
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.6",
41+
"@css-blocks/core": "^1.0.0",
4242
"@glimmer/compiler": "^0.43.0",
4343
"@glimmer/syntax": "^0.43.0",
4444
"@opticss/template-api": "^0.6.3",

packages/@css-blocks/cli/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/cli/compare/v1.0.0-alpha.7...v1.0.0) (2020-04-04)
7+
8+
9+
### chore
10+
11+
* Drop support for node 6, 8, and 11. ([3806e82](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/cli/commit/3806e82124814fbea99aa47353cd2c171b1f55ec))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* Node 8 is now out of maintainence so we have dropped support for node 6
17+
and 8. Node 11 is no longer needed because node 12 was released.
18+
19+
20+
21+
22+
623
# [1.0.0-alpha.6](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/cli/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2020-02-19)
724

825

packages/@css-blocks/cli/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@css-blocks/cli",
3-
"version": "1.0.0-alpha.6",
3+
"version": "1.0.0",
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": "^1.0.0-alpha.1",
50+
"@css-blocks/code-style": "^1.0.0",
5151
"@types/fs-extra": "^8.0.0",
5252
"@types/node-sass": "^4.11.0",
5353
"@types/yargs": "^13.0.0",
@@ -57,9 +57,9 @@
5757
"watch": "^1.0.2"
5858
},
5959
"dependencies": {
60-
"@css-blocks/bem-to-blocks": "^1.0.0-alpha.5",
61-
"@css-blocks/config": "^1.0.0-alpha.6",
62-
"@css-blocks/core": "^1.0.0-alpha.6",
60+
"@css-blocks/bem-to-blocks": "^1.0.0",
61+
"@css-blocks/config": "^1.0.0",
62+
"@css-blocks/core": "^1.0.0",
6363
"chalk": "^2.4.2",
6464
"debug": "^4.1.1",
6565
"fs-extra": "^8.0.0",

packages/@css-blocks/code-style/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/code-style/compare/v1.0.0-alpha.7...v1.0.0) (2020-04-04)
7+
8+
9+
### chore
10+
11+
* Drop support for node 6, 8, and 11. ([3806e82](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/code-style/commit/3806e82124814fbea99aa47353cd2c171b1f55ec))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* Node 8 is now out of maintainence so we have dropped support for node 6
17+
and 8. Node 11 is no longer needed because node 12 was released.
18+
19+
20+
21+
22+
623
# [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)
724

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

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": "1.0.0-alpha.1",
6+
"version": "1.0.0",
77
"main": "configs/tslint.interactive.json",
88
"readme": "README.md",
99
"keywords": [

packages/@css-blocks/config/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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](https://github.com/linkedin/css-blocks/compare/v1.0.0-alpha.7...v1.0.0) (2020-04-04)
7+
8+
9+
### chore
10+
11+
* Drop support for node 6, 8, and 11. ([3806e82](https://github.com/linkedin/css-blocks/commit/3806e82124814fbea99aa47353cd2c171b1f55ec))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* Node 8 is now out of maintainence so we have dropped support for node 6
17+
and 8. Node 11 is no longer needed because node 12 was released.
18+
19+
20+
21+
22+
623
# [1.0.0-alpha.6](https://github.com/linkedin/css-blocks/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2020-02-19)
724

825
**Note:** Version bump only for package @css-blocks/config

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.6",
3+
"version": "1.0.0",
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": "^1.0.0-alpha.1",
45+
"@css-blocks/code-style": "^1.0.0",
4646
"@types/lodash.merge": "^4.6.6",
4747
"typescript": "~3.8",
4848
"watch": "^1.0.2"
4949
},
5050
"dependencies": {
51-
"@css-blocks/core": "^1.0.0-alpha.6",
51+
"@css-blocks/core": "^1.0.0",
5252
"cosmiconfig": "^6.0.0",
5353
"debug": "^4.1.1",
5454
"lodash.merge": "^4.6.2"

packages/@css-blocks/core/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](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/core/compare/v1.0.0-alpha.7...v1.0.0) (2020-04-04)
7+
8+
9+
### chore
10+
11+
* Drop support for node 6, 8, and 11. ([3806e82](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/core/commit/3806e82124814fbea99aa47353cd2c171b1f55ec))
12+
13+
14+
### Features
15+
16+
* Optional Preprocessors & library/application API contract. ([80aba33](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/core/commit/80aba33c818c1285e35840929bf1fbbb80698c36))
17+
18+
19+
### BREAKING CHANGES
20+
21+
* Node 8 is now out of maintainence so we have dropped support for node 6
22+
and 8. Node 11 is no longer needed because node 12 was released.
23+
24+
25+
26+
27+
628
# [1.0.0-alpha.6](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/core/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2020-02-19)
729

830

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.6",
3+
"version": "1.0.0",
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": "^1.0.0-alpha.1",
41+
"@css-blocks/code-style": "^1.0.0",
4242
"@types/async": "^3.0.3",
4343
"@types/debug": "4.1.5",
4444
"typescript": "~3.8"

packages/@css-blocks/ember-cli/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/ember-cli/compare/v1.0.0-alpha.7...v1.0.0) (2020-04-04)
7+
8+
9+
### chore
10+
11+
* Drop support for node 6, 8, and 11. ([3806e82](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/ember-cli/commit/3806e82124814fbea99aa47353cd2c171b1f55ec))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* Node 8 is now out of maintainence so we have dropped support for node 6
17+
and 8. Node 11 is no longer needed because node 12 was released.
18+
19+
20+
21+
22+
623
# [1.0.0-alpha.7](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/ember-cli/compare/v1.0.0-alpha.6...v1.0.0-alpha.7) (2020-02-23)
724

825
**Note:** Version bump only for package @css-blocks/ember-cli

packages/@css-blocks/ember-cli/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-alpha.7",
2+
"version": "1.0.0",
33
"name": "@css-blocks/ember-cli",
44
"description": "Use CSS Blocks with your Ember and Glimmer projects.",
55
"keywords": [
@@ -13,9 +13,9 @@
1313
"test": "echo 'To test this package: cd ../../../private-packages/fixtures/ember-app && yarn test'"
1414
},
1515
"dependencies": {
16-
"@css-blocks/broccoli": "^1.0.0-alpha.7",
17-
"@css-blocks/config": "^1.0.0-alpha.6",
18-
"@css-blocks/glimmer": "^1.0.0-alpha.6",
16+
"@css-blocks/broccoli": "^1.0.0",
17+
"@css-blocks/config": "^1.0.0",
18+
"@css-blocks/glimmer": "^1.0.0",
1919
"@glimmer/application-pipeline": "^0.15.0",
2020
"broccoli-concat": "^3.7.3",
2121
"broccoli-funnel": "^2.0.1",

packages/@css-blocks/eyeglass/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,22 @@
22

33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [1.0.0](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/eyeglass/compare/v1.0.0-alpha.7...v1.0.0) (2020-04-04)
7+
8+
9+
### chore
10+
11+
* Drop support for node 6, 8, and 11. ([3806e82](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/eyeglass/commit/3806e82124814fbea99aa47353cd2c171b1f55ec))
12+
13+
14+
### Features
15+
16+
* Optional Preprocessors & library/application API contract. ([80aba33](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/eyeglass/commit/80aba33c818c1285e35840929bf1fbbb80698c36))
17+
* **eyeglass:** Adds new package that enables simple Eyeglass support. ([6f92d19](https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/eyeglass/commit/6f92d19c4362ca5e0b3971977d645eda5682c928))
18+
19+
20+
### BREAKING CHANGES
21+
22+
* Node 8 is now out of maintainence so we have dropped support for node 6
23+
and 8. Node 11 is no longer needed because node 12 was released.

packages/@css-blocks/eyeglass/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"author": "Gregory Wild-Smith <[email protected]>",
44
"description": "Tool to provide easy interoperation with the Eyeglass SASS module manager",
55
"license": "BSD-2-Clause",
6-
"version": "1.0.0-alpha.7",
6+
"version": "1.0.0",
77
"main": "dist/src/index.js",
88
"types": "dist/src/index.d.ts",
99
"files": [
@@ -42,7 +42,6 @@
4242
"publishConfig": {
4343
"access": "public"
4444
},
45-
"dependencies": {},
4645
"engines": {
4746
"node": "10.* || >= 12.*"
4847
},

0 commit comments

Comments
 (0)