Skip to content

Commit

Permalink
chore(release): publish
Browse files Browse the repository at this point in the history
  • Loading branch information
bigbigDreamer committed Sep 8, 2022
1 parent 416b53d commit 2f44b38
Show file tree
Hide file tree
Showing 25 changed files with 1,080 additions and 208 deletions.
5 changes: 5 additions & 0 deletions example/webpack-demo/loader/check-css-loader.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = function (source) {
console.log('Check CSS Source!!!');

return source;
};
2 changes: 1 addition & 1 deletion example/webpack-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"@montagejs/react-waline-client": "workspace:^0.0.9",
"@montagejs/react-waline-client": "^0.0.9",
"react": "17.0.2",
"react-dom": "17.0.2"
}
Expand Down
5 changes: 4 additions & 1 deletion example/webpack-demo/webpack.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import path from 'path';
import { fileURLToPath } from 'url';
import HtmlWebpackPlugin from 'html-webpack-plugin'
import CheckCssLoader from "./loader/check-css-loader.js";

const __filename = fileURLToPath(import.meta.url);

Expand Down Expand Up @@ -41,7 +42,9 @@ export default {
// include: [
// resolve("./src")
// ],
use: ["style-loader", "css-loader"],
use: ["style-loader", "css-loader", {
loader: resolve('./loader/check-css-loader.js')
}],
}
],
},
Expand Down
1 change: 0 additions & 1 deletion packages/components/react-lazy-load-image/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ lib
package-lock.json
node_modules
dist
tsconfig.tsbuildinfo
9 changes: 9 additions & 0 deletions packages/components/react-lazy-load-image/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @montagejs/react-lazy-load-image

## 0.0.10

### Patch Changes

- [`416b53d`](https://github.com/bigbigDreamer/montage/commit/416b53d) Thanks [@bigbigDreamer](https://github.com/bigbigDreamer)! - fix: fix d.ts can't generate againe

- Updated dependencies
- @montagejs/can-i-use@0.0.6

## 0.0.9

### Patch Changes
Expand Down
7 changes: 3 additions & 4 deletions packages/components/react-lazy-load-image/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@montagejs/react-lazy-load-image",
"version": "0.0.9",
"version": "0.0.10",
"description": "react lazy load image",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand All @@ -23,14 +23,13 @@
"files": [
"es",
"lib",
"dist",
"!es/tsconfig.tsbuildinfo"
"dist"
],
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"@montagejs/can-i-use": "workspace:^0.0.5",
"@montagejs/can-i-use": "workspace:^0.0.6",
"lodash-es": "^4.17.21"
},
"homepage": "https://github.com/bigbigDreamer/montage/tree/main/packages/components/react-lazy-load-image",
Expand Down
5 changes: 3 additions & 2 deletions packages/components/react-lazy-load-image/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"outDir": "./es/",
"declarationDir": "./es/",
"emitDeclarationOnly": true
},
"include": ["./src/helpers.d.ts"]
"include": ["./src"],
"files": ["./src/helpers.d.ts"]
}
9 changes: 9 additions & 0 deletions packages/components/react-waline-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @montagejs/react-waline-client

## 0.1.5

### Patch Changes

- [`416b53d`](https://github.com/bigbigDreamer/montage/commit/416b53d) Thanks [@bigbigDreamer](https://github.com/bigbigDreamer)! - fix: fix d.ts can't generate againe

- Updated dependencies
- @montagejs/rollup-plugin-generate-style@0.0.8

## 0.1.4

### Patch Changes
Expand Down
7 changes: 3 additions & 4 deletions packages/components/react-waline-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@montagejs/react-waline-client",
"version": "0.1.4",
"version": "0.1.5",
"description": "react waline client",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand All @@ -23,15 +23,14 @@
"react": ">=16.8.0"
},
"dependencies": {
"@montagejs/rollup-plugin-generate-style": "workspace:0.0.7",
"@montagejs/rollup-plugin-generate-style": "workspace:0.0.8",
"@waline/client": "^2.6.1",
"classnames": "^2.3.1"
},
"files": [
"es",
"lib",
"dist",
"!es/tsconfig.tsbuildinfo"
"dist"
],
"homepage": "https://github.com/bigbigDreamer/montage/tree/main/packages/components/react-waline-client",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/components/react-waline-client/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"outDir": "./es/",
"declarationDir": "./es/",
"emitDeclarationOnly": true
}
}
1 change: 0 additions & 1 deletion packages/plugins/changelog-montage/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ lib
package-lock.json
node_modules
dist
tsconfig.tsbuildinfo
6 changes: 6 additions & 0 deletions packages/plugins/changelog-montage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @montagejs/changelog-montage

## 1.2.11

### Patch Changes

- [`416b53d`](https://github.com/bigbigDreamer/montage/commit/416b53d) Thanks [@bigbigDreamer](https://github.com/bigbigDreamer)! - fix: fix d.ts can't generate againe

## 1.2.10

### Patch Changes
Expand Down
5 changes: 2 additions & 3 deletions packages/plugins/changelog-montage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@montagejs/changelog-montage",
"version": "1.2.10",
"version": "1.2.11",
"description": "changeset log plugin",
"main": "lib/index.js",
"module": "es/index.js",
Expand All @@ -17,8 +17,7 @@
},
"files": [
"es",
"lib",
"!es/tsconfig.tsbuildinfo"
"lib"
],
"devDependencies": {
"@changesets/types": "^5.1.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/changelog-montage/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"outDir": "./es/",
"emitDeclarationOnly": true
"declarationDir": "./es/",
"emitDeclarationOnly": true,
}
}
2 changes: 1 addition & 1 deletion packages/plugins/rollup-plugin-generate-style/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ lib
package-lock.json
node_modules
dist
tsconfig.tsbuildinfo
.tsbuildinfo
6 changes: 6 additions & 0 deletions packages/plugins/rollup-plugin-generate-style/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @montagejs/rollup-plugin-generate-style

## 0.0.8

### Patch Changes

- [`416b53d`](https://github.com/bigbigDreamer/montage/commit/416b53d) Thanks [@bigbigDreamer](https://github.com/bigbigDreamer)! - fix: fix d.ts can't generate againe

## 0.0.7

### Patch Changes
Expand Down
5 changes: 2 additions & 3 deletions packages/plugins/rollup-plugin-generate-style/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@montagejs/rollup-plugin-generate-style",
"version": "0.0.7",
"version": "0.0.8",
"description": "rollup plugin for generate style with babel-plugin-import",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand All @@ -21,8 +21,7 @@
},
"files": [
"es",
"lib",
"!es/tsconfig.tsbuildinfo"
"lib"
],
"keywords": [
"rollup",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/rollup-plugin-generate-style/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"outDir": "./es/",
"emitDeclarationOnly": true
"declarationDir": "./es/",
"emitDeclarationOnly": true,
}
}
2 changes: 1 addition & 1 deletion packages/tools/can-i-use/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ lib
package-lock.json
node_modules
dist
tsconfig.tsbuildinfo
.tsbuildinfo
6 changes: 6 additions & 0 deletions packages/tools/can-i-use/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @montagejs/can-i-use

## 0.0.6

### Patch Changes

- [`416b53d`](https://github.com/bigbigDreamer/montage/commit/416b53d) Thanks [@bigbigDreamer](https://github.com/bigbigDreamer)! - fix: fix d.ts can't generate againe

## 0.0.5

### Patch Changes
Expand Down
5 changes: 2 additions & 3 deletions packages/tools/can-i-use/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@montagejs/can-i-use",
"version": "0.0.5",
"version": "0.0.6",
"description": "can i use What are the characteristics in js or css or html?",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand All @@ -24,8 +24,7 @@
"files": [
"es",
"lib",
"dist",
"!es/tsconfig.tsbuildinfo"
"dist"
],
"homepage": "https://github.com/bigbigDreamer/montage/tree/main/packages/tools/can-i-use",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions packages/tools/can-i-use/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"outDir": "./es/",
"emitDeclarationOnly": true
"declarationDir": "./es/",
"emitDeclarationOnly": true,
}
}
Loading

0 comments on commit 2f44b38

Please sign in to comment.