Skip to content

Commit 1a0e77b

Browse files
committed
Merge remote-tracking branch 'origin/develop'
# Conflicts: # yarn.lock
2 parents 2be9748 + f8e3f35 commit 1a0e77b

File tree

100 files changed

+13286
-3441
lines changed

Some content is hidden

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

100 files changed

+13286
-3441
lines changed

.circleci/config.yml

-28
This file was deleted.

.eslintrc.js

-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,4 @@ module.exports = {
77
extends: [
88
"eslint-config-2o3t"
99
],
10-
parserOptions: {
11-
parser: "babel-eslint"
12-
},
1310
}

.github/workflows/coveralls.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Coveralls
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- develop
7+
jobs:
8+
install-and-coveralls:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@master
14+
15+
- name: Cache node modules
16+
uses: actions/cache@v1
17+
with:
18+
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
19+
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
20+
restore-keys: |
21+
${{ runner.os }}-build-${{ env.cache-name }}-
22+
${{ runner.os }}-build-
23+
${{ runner.os }}-
24+
25+
- name: install
26+
run: yarn --network-timeout 600000
27+
28+
- name: yarn add coveralls
29+
run: |
30+
yarn add -D coveralls
31+
yarn run test --coverage && cat ./coverage/lcov.info
32+
33+
- name: Coveralls
34+
uses: coverallsapp/github-action@master
35+
with:
36+
github-token: ${{ secrets.GITHUB_TOKEN }}

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ typings/
5858

5959
# dotenv environment variables file
6060
.env
61+
.env.local
6162

6263
# parcel-bundler cache (https://parceljs.org/)
6364
.cache
@@ -86,3 +87,6 @@ dist
8687
*.njsproj
8788
*.sln
8889
*.sw*
90+
91+
# temp
92+
.temp

CHANGELOG.md

+198
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,198 @@
1+
## [0.4.2](https://github.com/MicroAppJS/core/compare/v0.4.1...v0.4.2) (2021-09-15)
2+
3+
4+
### Features
5+
6+
* enhance init command ([7b22679](https://github.com/MicroAppJS/core/commit/7b22679f888fad8a723e38795981196f246793f7))
7+
* 去除无用的配置信息 ([61adaf7](https://github.com/MicroAppJS/core/commit/61adaf7b637e21ad8719ca72092f88485de667a3))
8+
9+
## [0.4.1](https://github.com/MicroAppJS/core/compare/v0.4.0...v0.4.1) (2021-07-22)
10+
11+
# [0.4.0](https://github.com/MicroAppJS/core/compare/v0.3.30...v0.4.0) (2020-06-10)
12+
13+
14+
### Bug Fixes
15+
16+
* fix some bug ([79c3a7d](https://github.com/MicroAppJS/core/commit/79c3a7d7d5113abdc8b31bb0756734a3049f9fdb))
17+
18+
19+
### Features
20+
21+
* 增加 `namespace` 参数配置,增强 `init` 方法 ([8e8285c](https://github.com/MicroAppJS/core/commit/8e8285cd91ebcd807d0c961550110bcc841b05d9))
22+
23+
## [0.3.30](https://github.com/MicroAppJS/core/compare/v0.3.29...v0.3.30) (2020-04-21)
24+
25+
26+
### Bug Fixes
27+
28+
* fixed dependencies ([0dafd73](https://github.com/MicroAppJS/core/commit/0dafd7346626b91c40eb638932f685cf97658c49))
29+
30+
## [0.3.29](https://github.com/MicroAppJS/core/compare/v0.3.28...v0.3.29) (2020-04-18)
31+
32+
33+
### Features
34+
35+
* Improving `extendConfig` and `extendMethod` ([aea8ab2](https://github.com/MicroAppJS/core/commit/aea8ab24cf4d387f064178ed6ebaf438e53c2f46))
36+
37+
## [0.3.28](https://github.com/MicroAppJS/core/compare/v0.3.27...v0.3.28) (2020-04-18)
38+
39+
40+
### Features
41+
42+
* enhance `type` options ([2aa664d](https://github.com/MicroAppJS/core/commit/2aa664dc32d90378b54c87fd60cf9e9fe327786b))
43+
44+
## [0.3.27](https://github.com/MicroAppJS/core/compare/v0.3.26...v0.3.27) (2020-04-17)
45+
46+
47+
### Features
48+
49+
* add `mergeContext` method ([740b8bb](https://github.com/MicroAppJS/core/commit/740b8bbdf3d20a31eb428cf2d440c16895be319e))
50+
* add before register ([efc19f5](https://github.com/MicroAppJS/core/commit/efc19f5e956c9e140d7b7fb45b331cc8ad765bd2))
51+
52+
## [0.3.26](https://github.com/MicroAppJS/core/compare/v0.3.25...v0.3.26) (2020-04-15)
53+
54+
55+
### Features
56+
57+
* enhance `assertVersion` ([4741d20](https://github.com/MicroAppJS/core/commit/4741d20b209f1791c1b15a47440ca0a4858d7d9b))
58+
* enhance `resolve``tempDir` ([cdbc6b2](https://github.com/MicroAppJS/core/commit/cdbc6b20b01664bf9743f6092481c7a9091a6f96))
59+
60+
## [0.3.25](https://github.com/MicroAppJS/core/compare/v0.3.24...v0.3.25) (2020-04-09)
61+
62+
63+
### Features
64+
65+
* unique plugins ([8a8d01f](https://github.com/MicroAppJS/core/commit/8a8d01f5a6620923b7be4adaea0a0f2ba51ded45))
66+
67+
## [0.3.24](https://github.com/MicroAppJS/core/compare/v0.3.23...v0.3.24) (2020-04-09)
68+
69+
70+
### Features
71+
72+
* add `override` option ([9d7c4bc](https://github.com/MicroAppJS/core/commit/9d7c4bce68a0b0e12681574ed98d2198286407ec))
73+
74+
## [0.3.23](https://github.com/MicroAppJS/core/compare/v0.3.22...v0.3.23) (2020-03-31)
75+
76+
## [0.3.22](https://github.com/MicroAppJS/core/compare/v0.3.21...v0.3.22) (2020-03-31)
77+
78+
79+
### Bug Fixes
80+
81+
* fixed autoPrefixScope config ([bb258c1](https://github.com/MicroAppJS/core/commit/bb258c1296efff06729325cb611d34521ca28ecf))
82+
83+
## [0.3.21](https://github.com/MicroAppJS/core/compare/v0.3.20...v0.3.21) (2020-03-30)
84+
85+
86+
### Features
87+
88+
* `hasKey` shared ([a4a7294](https://github.com/MicroAppJS/core/commit/a4a72944eafe924bb23fdbb51e41cb4879f7d135))
89+
90+
## [0.3.20](https://github.com/MicroAppJS/core/compare/v0.3.19...v0.3.20) (2020-03-30)
91+
92+
## [0.3.19](https://github.com/MicroAppJS/core/compare/v0.3.18...v0.3.19) (2020-03-25)
93+
94+
95+
### Features
96+
97+
* add 'autoPrefixScope' context option ([5a80c61](https://github.com/MicroAppJS/core/commit/5a80c61414b316e77beed840471e1acb87fe4e49))
98+
99+
## [0.3.18](https://github.com/MicroAppJS/core/compare/v0.3.17...v0.3.18) (2020-03-23)
100+
101+
102+
### Bug Fixes
103+
104+
* fix params ([51e38b6](https://github.com/MicroAppJS/core/commit/51e38b6ab1ad45071ec85a2a9af0f4d2b1ed18ef))
105+
106+
## [0.3.17](https://github.com/MicroAppJS/core/compare/v0.3.16...v0.3.17) (2020-03-23)
107+
108+
109+
### Features
110+
111+
* add `dependencies` option for initPlugins ([53bb852](https://github.com/MicroAppJS/core/commit/53bb852c7124508b98c7694495d40969a8cd7d97))
112+
113+
## [0.3.16](https://github.com/MicroAppJS/core/compare/v0.3.15...v0.3.16) (2020-03-23)
114+
115+
## [0.3.15](https://github.com/MicroAppJS/core/compare/v0.3.14...v0.3.15) (2020-03-23)
116+
117+
118+
### Features
119+
120+
* add api.validateSchema() & assertVersion ignore alpha/next/rc ([2a30822](https://github.com/MicroAppJS/core/commit/2a30822deed1a7487a966d0e1c75af93654fc266))
121+
* update api.validateSchema() ([9ba84fb](https://github.com/MicroAppJS/core/commit/9ba84fb0e0a4dcf178c75ea3d4f3718231a75a43))
122+
123+
## [0.3.14](https://github.com/MicroAppJS/core/compare/v0.3.13...v0.3.14) (2020-03-20)
124+
125+
## [0.3.13](https://github.com/MicroAppJS/core/compare/v0.3.12...v0.3.13) (2020-03-18)
126+
127+
128+
### Bug Fixes
129+
130+
* fix some bugs ([0942019](https://github.com/MicroAppJS/core/commit/0942019a0e9247fa5fa884fa340be6039cf13719))
131+
132+
## [0.3.12](https://github.com/MicroAppJS/core/compare/v0.3.11...v0.3.12) (2020-03-18)
133+
134+
135+
### Features
136+
137+
* add skipTarget for built-in ([ca5264f](https://github.com/MicroAppJS/core/commit/ca5264fcd389348d1123fffad4ff05deef321a28))
138+
* optimize init command ([223a6ca](https://github.com/MicroAppJS/core/commit/223a6ca6ed780c67cfdc8cca67201576dda9a8e5))
139+
140+
## [0.3.11](https://github.com/MicroAppJS/core/compare/v0.3.10...v0.3.11) (2020-03-16)
141+
142+
143+
### Bug Fixes
144+
145+
* art init command ([ab8f37e](https://github.com/MicroAppJS/core/commit/ab8f37ef4d46b5ea0d5442bc34b8e60847c7406a))
146+
147+
148+
### Features
149+
150+
* add clean command ([71f40a2](https://github.com/MicroAppJS/core/commit/71f40a2afb1d93e6961b946fa0f2542984809b69))
151+
* add writeTempFile method ([5d7c720](https://github.com/MicroAppJS/core/commit/5d7c720a700e571fa1208d763db6c9ac0058f0b2))
152+
153+
## [0.3.10](https://github.com/MicroAppJS/core/compare/v0.3.9...v0.3.10) (2020-03-11)
154+
155+
156+
### Bug Fixes
157+
158+
* some bugs ([c42c30f](https://github.com/MicroAppJS/core/commit/c42c30f2c76a446408411c1ad5f6dccad036139d))
159+
* some bugs ([05db15c](https://github.com/MicroAppJS/core/commit/05db15c4d10fd5304183095793901292a66cd096))
160+
161+
## [0.3.9](https://github.com/MicroAppJS/core/compare/v0.3.8...v0.3.9) (2020-03-11)
162+
163+
164+
### Bug Fixes
165+
166+
* 修复同步方法调用异常 ([612d55b](https://github.com/MicroAppJS/core/commit/612d55bdb771ee5f39ee97982f16f128a750875e))
167+
168+
## [0.3.8](https://github.com/MicroAppJS/core/compare/v0.3.7...v0.3.8) (2020-03-11)
169+
170+
171+
### Bug Fixes
172+
173+
* fixed env ([a3cbc3e](https://github.com/MicroAppJS/core/commit/a3cbc3e207d6973f7be9375f026a56b159dcc9ba))
174+
175+
176+
### Features
177+
178+
* add method initSync & runSync ([d4c9683](https://github.com/MicroAppJS/core/commit/d4c9683479d2e71e9b1739c5cf4f588659610885))
179+
180+
## [0.3.7](https://github.com/MicroAppJS/core/compare/v0.3.6...v0.3.7) (2020-03-10)
181+
182+
183+
### Bug Fixes
184+
185+
* add target ([66262ac](https://github.com/MicroAppJS/core/commit/66262ac9a1411133758dfcc4f43b8613734a88f6))
186+
187+
## [0.3.6](https://github.com/MicroAppJS/core/compare/v0.0.57...v0.3.6) (2020-03-07)
188+
189+
190+
### Features
191+
192+
* add init command ([25a10a1](https://github.com/MicroAppJS/core/commit/25a10a1cfef205c335dd9376458e3790e0a6de9e))
193+
* enhance show cmd ([f1c4fc1](https://github.com/MicroAppJS/core/commit/f1c4fc16005d9d795ad7bfbf68d2dee96871ebba))
194+
195+
196+
197+
## 0.0.57 (2019-08-07)
198+

0 commit comments

Comments
 (0)