Skip to content

Commit

Permalink
chore: version and changelog (#959)
Browse files Browse the repository at this point in the history
  • Loading branch information
luhc228 authored Sep 29, 2021
1 parent 3bf795e commit 3457bdb
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 9 deletions.
5 changes: 5 additions & 0 deletions extensions/material-helper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log

## 1.1.1

- feat: support select different component type

## 1.1.0

- chore: add iceworks-refactor to extensionDependencies
- fix: the babel plugin's flow will cause error, when babel parse typescript files.
- fix: import duplicate components when add routers
Expand Down
2 changes: 1 addition & 1 deletion extensions/material-helper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Component Helper",
"description": "Easily use Component in React/Vue/Rax.",
"publisher": "iceworks-team",
"version": "1.1.0",
"version": "1.1.1",
"main": "./build/extension.js",
"engines": {
"vscode": "^1.41.0"
Expand Down
4 changes: 4 additions & 0 deletions packages/material-engine/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 0.2.1

- feat: support get component type

## 0.2.0

- fix: import duplicate components when add routers
Expand Down
2 changes: 1 addition & 1 deletion packages/material-engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@appworks/material-engine",
"version": "0.2.0",
"version": "0.2.1",
"description": "AppWorks Material Engine for VSCode extension.",
"files": [
"lib"
Expand Down
1 change: 0 additions & 1 deletion packages/material-engine/src/component/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ export async function addCode(dataSource: IMaterialComponent) {
const packageJSONPath = path.join(projectPath, dependencyDir, npm, packageJSONFilename);
try {
const packageJSON = await fsExtra.readJson(packageJSONPath);
console.log('semver.satisfies(packageJSON.version, version)', semver.satisfies(packageJSON.version, version));
if (semver.satisfies(packageJSON.version, version)) {
return;
}
Expand Down
5 changes: 5 additions & 0 deletions packages/material-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# CHANGELOG

## 0.1.1

- feat: support select different component type
2 changes: 1 addition & 1 deletion packages/material-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@appworks/material-ui",
"version": "0.1.0",
"version": "0.1.1",
"description": "Material panel for display and select materials.",
"files": [
"demo/",
Expand Down
2 changes: 0 additions & 2 deletions packages/material-ui/src/components/type.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,6 @@ const Content: React.FC<ContentProps> = ({
})
}
async function handleSelectSubmit(value: string) {
console.log('value==>', value);
console.log('categoryData==>', categoryData);
const newData = filterCategoryData(value);

setData(newData);
Expand Down
4 changes: 4 additions & 0 deletions packages/material-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 0.1.2

- feat: add ts type(componentType)

## 0.1.1

- feat: add languageType type to IMaterialScaffold
Expand Down
2 changes: 1 addition & 1 deletion packages/material-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@appworks/material-utils",
"version": "0.1.1",
"version": "0.1.2",
"description": "General tool library for materials.",
"files": [
"lib"
Expand Down
4 changes: 2 additions & 2 deletions packages/material-utils/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export interface IMaterialComponent {
description?: string;
dependencies?: INpmDependencies;
importStatement?: string;
componentType: string;
componentType?: string;
}

export interface IMaterialBlock {
Expand Down Expand Up @@ -109,7 +109,7 @@ export interface IMaterialPage {
uid: string[];
isNewly: boolean;
pageName: any;
componentType: string;
componentType?: string;
templateData?: any;
}

Expand Down

0 comments on commit 3457bdb

Please sign in to comment.