Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: version and changelog #959

Merged
merged 1 commit into from
Sep 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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