Skip to content

Commit

Permalink
Merge branch 'dev' into refactor-updated-even-further-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke committed Oct 5, 2021
2 parents cb69bed + 4617540 commit 373ea94
Show file tree
Hide file tree
Showing 60 changed files with 2,098 additions and 1,980 deletions.
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Expand Up @@ -2,6 +2,8 @@

<!-- before posting an issue, verify you are running at least Node 12.12.x -->

<!-- Please consider to even also contribute by analyzing the problem within the codebase and suggesting a solution, either in this ticket or – even better and easier – with a pull request. All of our activities are non-profit and open source work is highly benefiting by any possible support from the community. -->

I am using Pattern Lab Node `vX.X.X` on `Windows | Mac | Linux`, with Node `vX.X.X`, using a `Gulp | Grunt | Vanilla | Custom` Edition.

##### Expected Behavior
Expand Down
551 changes: 284 additions & 267 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lerna.json
@@ -1,6 +1,6 @@
{
"lerna": "4.0.0",
"version": "5.14.3",
"version": "5.15.0",
"packages": [
"packages/*"
],
Expand Down
9 changes: 9 additions & 0 deletions packages/cli/CHANGELOG.md
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.15.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/compare/v5.14.3...v5.15.0) (2021-07-01)

**Note:** Version bump only for package @pattern-lab/cli






## [5.14.3](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/compare/v5.14.2...v5.14.3) (2021-05-17)

**Note:** Version bump only for package @pattern-lab/cli
Expand Down
3 changes: 1 addition & 2 deletions packages/cli/bin/scaffold.js
@@ -1,7 +1,7 @@
'use strict';
const path = require('path');
const execa = require('execa');
const fs = require('fs-extra');
const fs = require('fs');
const wrapAsync = require('./utils').wrapAsync;
const mkdirsAsync = require('./utils').mkdirsAsync;

Expand All @@ -18,7 +18,6 @@ const scaffold = (projectDir, sourceDir, publicDir, exportDir) =>
wrapAsync(function* () {
const projectPath = path.join(process.cwd(), projectDir);
if (!fs.existsSync(path.join(projectPath, 'package.json'))) {
fs.ensureDirSync(projectPath);
execa.sync('npm', ['init', '-y'], {
cwd: projectPath,
});
Expand Down
8 changes: 4 additions & 4 deletions packages/cli/package.json
@@ -1,16 +1,16 @@
{
"name": "@pattern-lab/cli",
"description": "Command-line interface (CLI) for the @pattern-lab/core.",
"version": "5.14.3",
"version": "5.15.0",
"bin": {
"patternlab": "bin/patternlab.js"
},
"author": {
"name": "Patternlab contributors"
},
"dependencies": {
"@pattern-lab/core": "^5.14.3",
"@pattern-lab/live-server": "^5.14.3",
"@pattern-lab/core": "^5.15.0",
"@pattern-lab/live-server": "^5.15.0",
"@pattern-lab/starterkit-mustache-base": "3.0.3",
"archiver": "5.3.0",
"chalk": "4.1.0",
Expand Down Expand Up @@ -49,7 +49,7 @@
],
"scripts": {
"lint": "eslint ./{bin,test}",
"test:separate": "tap ./test/*.test.js --reporter spec --timeout=120"
"test:separate": "tap './test/*.test.js' --reporter spec --timeout=120"
},
"repository": "https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli",
"bugs": "https://github.com/pattern-lab/patternlab-node/issues",
Expand Down
11 changes: 11 additions & 0 deletions packages/core/CHANGELOG.md
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.15.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/compare/v5.14.3...v5.15.0) (2021-07-01)


### Features

* **documentation:** added (sub)groups documentation again [#1262](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/issues/1262) ([#1334](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/issues/1334)) ([9fac269](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/9fac2699d2f6c64c4544e8e4d8e18c1a1ce7e49f))





## [5.14.3](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/compare/v5.14.2...v5.14.3) (2021-05-17)

**Note:** Version bump only for package @pattern-lab/core
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
@@ -1,11 +1,11 @@
{
"name": "@pattern-lab/core",
"description": "Create atomic design systems with Pattern Lab. This is the core API and orchestrator of the ecosystem.",
"version": "5.14.3",
"version": "5.15.0",
"main": "./src/index.js",
"dependencies": {
"@pattern-lab/engine-mustache": "^5.14.3",
"@pattern-lab/live-server": "^5.14.3",
"@pattern-lab/live-server": "^5.15.0",
"chalk": "4.1.0",
"chokidar": "3.5.1",
"dive": "0.5.0",
Expand Down
24 changes: 0 additions & 24 deletions packages/core/src/lib/server.js
Expand Up @@ -36,30 +36,6 @@ const server = (patternlab) => {
patternlab.config.paths.public.root
)
);
defaults.assets = [
path.resolve(
path.join(
process.cwd(),
patternlab.config.paths.source.js,
'**',
'*.js' // prevent preprocessors like typescript from reloading
)
),
path.resolve(
path.join(process.cwd(), patternlab.config.paths.source.images)
),
path.resolve(
path.join(process.cwd(), patternlab.config.paths.source.fonts)
),
path.resolve(
path.join(
process.cwd(),
patternlab.config.paths.source.css,
'**',
'*.css' // prevent preprocessors from reloading
)
),
];

// allow for overrides should they exist inside patternlab-config.json
const liveServerConfig = Object.assign(
Expand Down
@@ -1,2 +1,2 @@
Hello world!
{{ subtitle }}
{{subtitle}}
132 changes: 70 additions & 62 deletions packages/create/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.15.0](https://github.com/pattern-lab/patternlab-node/compare/v5.14.3...v5.15.0) (2021-07-01)

**Note:** Version bump only for package create-pattern-lab





## [5.14.3](https://github.com/pattern-lab/patternlab-node/compare/v5.14.2...v5.14.3) (2021-05-17)

**Note:** Version bump only for package create-pattern-lab
Expand Down Expand Up @@ -139,66 +147,66 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline




# [5.4.0](https://github.com/pattern-lab/patternlab-node/compare/v5.3.3...v5.4.0) (2019-11-26)

**Note:** Version bump only for package create-pattern-lab





# [5.3.0](https://github.com/pattern-lab/patternlab-node/compare/v5.2.0...v5.3.0) (2019-11-13)

**Note:** Version bump only for package create-pattern-lab





# [5.1.0](https://github.com/pattern-lab/patternlab-node/compare/v5.0.2...v5.1.0) (2019-10-29)

**Note:** Version bump only for package create-pattern-lab





# [5.0.0](https://github.com/pattern-lab/patternlab-node/compare/v3.0.0-beta.3...v5.0.0) (2019-10-25)

**Note:** Version bump only for package create-pattern-lab






## [1.0.11](https://github.com/pattern-lab/patternlab-node/compare/create-pattern-lab@1.0.10...create-pattern-lab@1.0.11) (2019-10-14)

**Note:** Version bump only for package create-pattern-lab






## [1.0.8](https://github.com/pattern-lab/patternlab-node/compare/create-pattern-lab@1.0.7...create-pattern-lab@1.0.8) (2019-08-23)

**Note:** Version bump only for package create-pattern-lab





## [1.0.7](https://github.com/pattern-lab/patternlab-node/compare/create-pattern-lab@1.0.6...create-pattern-lab@1.0.7) (2019-08-23)

**Note:** Version bump only for package create-pattern-lab






## [1.0.6](https://github.com/sghoweri/patternlab-node/compare/create-pattern-lab@1.0.5...create-pattern-lab@1.0.6) (2019-05-16)


# [5.4.0](https://github.com/pattern-lab/patternlab-node/compare/v5.3.3...v5.4.0) (2019-11-26)

**Note:** Version bump only for package create-pattern-lab





# [5.3.0](https://github.com/pattern-lab/patternlab-node/compare/v5.2.0...v5.3.0) (2019-11-13)

**Note:** Version bump only for package create-pattern-lab





# [5.1.0](https://github.com/pattern-lab/patternlab-node/compare/v5.0.2...v5.1.0) (2019-10-29)

**Note:** Version bump only for package create-pattern-lab





# [5.0.0](https://github.com/pattern-lab/patternlab-node/compare/v3.0.0-beta.3...v5.0.0) (2019-10-25)

**Note:** Version bump only for package create-pattern-lab






## [1.0.11](https://github.com/pattern-lab/patternlab-node/compare/create-pattern-lab@1.0.10...create-pattern-lab@1.0.11) (2019-10-14)

**Note:** Version bump only for package create-pattern-lab






## [1.0.8](https://github.com/pattern-lab/patternlab-node/compare/create-pattern-lab@1.0.7...create-pattern-lab@1.0.8) (2019-08-23)

**Note:** Version bump only for package create-pattern-lab





## [1.0.7](https://github.com/pattern-lab/patternlab-node/compare/create-pattern-lab@1.0.6...create-pattern-lab@1.0.7) (2019-08-23)

**Note:** Version bump only for package create-pattern-lab






## [1.0.6](https://github.com/sghoweri/patternlab-node/compare/create-pattern-lab@1.0.5...create-pattern-lab@1.0.6) (2019-05-16)

**Note:** Version bump only for package create-pattern-lab
4 changes: 2 additions & 2 deletions packages/create/package.json
@@ -1,12 +1,12 @@
{
"name": "create-pattern-lab",
"version": "5.14.3",
"version": "5.15.0",
"description": "",
"bin": "index.js",
"main": "index.js",
"scripts": {},
"dependencies": {
"@pattern-lab/cli": "^5.14.3"
"@pattern-lab/cli": "^5.15.0"
},
"author": "",
"license": "MIT",
Expand Down

0 comments on commit 373ea94

Please sign in to comment.