Skip to content

Commit 05611f6

Browse files
pzuraqnicolo-ribaudoJLHwung
committedFeb 1, 2022
Add new decorators transform (babel#14004)
Co-authored-by: Nicolò Ribaudo <nicolo.ribaudo@gmail.com> Co-authored-by: Huáng Jùnliàng <jlhwung@gmail.com>
1 parent f893b33 commit 05611f6

File tree

287 files changed

+8136
-63
lines changed

Some content is hidden

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

287 files changed

+8136
-63
lines changed
 

‎Makefile

+9-9
Original file line numberDiff line numberDiff line change
@@ -187,15 +187,15 @@ prepublish:
187187
IS_PUBLISH=true $(MAKE) test
188188

189189
new-version-checklist:
190-
# @echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
191-
# @echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
192-
# @echo "!!!!!! !!!!!!"
193-
# @echo "!!!!!! Write any message that should !!!!!!"
194-
# @echo "!!!!!! block the release here !!!!!!"
195-
# @echo "!!!!!! !!!!!!"
196-
# @echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
197-
# @echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
198-
# @exit 1
190+
@echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
191+
@echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
192+
@echo "!!!!!! !!!!!!"
193+
@echo "!!!!!! Update the version of the "identity" !!!!!!"
194+
@echo "!!!!!! and "applyDecs" helpers to 7.17.0 !!!!!!"
195+
@echo "!!!!!! !!!!!!"
196+
@echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
197+
@echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
198+
@exit 1
199199

200200
new-version:
201201
$(MAKE) new-version-checklist

‎babel.config.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,10 @@ module.exports = function (api) {
194194
assumptions: parserAssumptions,
195195
},
196196
{
197-
test: ["packages/babel-generator"].map(normalize),
197+
test: [
198+
"packages/babel-generator",
199+
"packages/babel-plugin-proposal-decorators",
200+
].map(normalize),
198201
plugins: ["babel-plugin-transform-charcodes"],
199202
},
200203
convertESM && {

0 commit comments

Comments
 (0)