ไม่พบปลั๊กอิน“ ข้อเสนอเชิงตัวเลข - ตัวแยก” ในแอปเชิงมุม


11

ng build --prodฉันได้รับดังต่อไปนี้ข้อผิดพลาดในการทำงาน

An unhandled exception occurred: [BABEL] /root/catch-up-enterprise/dist/polyfills-es5.8e4ba13e1c10f0a37bb4.js: Could not find plugin "proposal-numeric-separator". Ensure there is an entry in ./available-plugins.js for it. (While processing: "/root/catch-up-enterprise/node_modules/@angular-devkit/build-angular/node_modules/@babel/preset-env/lib/index.js") See "/tmp/ng-sg4wHH/angular-errors.log" for further details

บันทึกข้อผิดพลาด:

[root@localhost ~]# more /tmp/ng-sg4wHH/angular-errors.log
[error] Error: [BABEL] /root/catch-up-enterprise/dist/polyfills-es5.8e4ba13e1c10f0a37bb4.js: Could not find plugin "proposal-numeric-separator". Ensure there is an entry 
in ./available-plugins.js for it. (While processing: "/root/catch-up-enterprise/node_modules/@angular-devkit/build-angular/node_modules/@babel/preset-env/lib/index.js")
    at getPlugin (/root/catch-up-enterprise/node_modules/@angular-devkit/build-angular/node_modules/@babel/preset-env/lib/index.js:67:11)
    at Array.from.map.pluginName (/root/catch-up-enterprise/node_modules/@angular-devkit/build-angular/node_modules/@babel/preset-env/lib/index.js:258:62)
    at Array.map (<anonymous>)
    at _default (/root/catch-up-enterprise/node_modules/@angular-devkit/build-angular/node_modules/@babel/preset-env/lib/index.js:258:43)
    at /root/catch-up-enterprise/node_modules/@babel/helper-plugin-utils/lib/index.js:19:12
    at /root/catch-up-enterprise/node_modules/@babel/core/lib/config/full.js:179:14
    at Generator.next (<anonymous>)
    at Function.<anonymous> (/root/catch-up-enterprise/node_modules/@babel/core/lib/gensync-utils/async.js:26:3)
    at Generator.next (<anonymous>)
    at step (/root/catch-up-enterprise/node_modules/gensync/index.js:254:32)
    at evaluateAsync (/root/catch-up-enterprise/node_modules/gensync/index.js:284:5)
    at Function.errback (/root/catch-up-enterprise/node_modules/gensync/index.js:108:7)
    at errback (/root/catch-up-enterprise/node_modules/@babel/core/lib/gensync-utils/async.js:70:18)
    at async (/root/catch-up-enterprise/node_modules/gensync/index.js:183:31)
    at onFirstPause (/root/catch-up-enterprise/node_modules/gensync/index.js:209:13)
    at Generator.next (<anonymous>)

ลองทำตามขั้นตอน: ฉันคิดว่าปัญหาหายไปโมดูลโมดุลตัวเลข - ตัวแยกดังนั้นติดตั้งโมดูลผ่านคำสั่งด้านล่าง

    npm i @babel/plugin-proposal-numeric-separator

ปัญหายังไม่ได้รับการแก้ไขดังนั้นลองตอบคำตอบในปัญหาที่คล้ายกันแล้วยังเกิดข้อผิดพลาดเหมือนเดิม

จะแก้ไขปัญหานี้ได้อย่างไร?

คำตอบ:


28

ขอบคุณ nicolo-ribaudo จากรุ่น 8680

การเพิ่มการพึ่งพา @ babel / compat-data ":" 7.8.0 "แก้ไขปัญหาให้ฉัน

vi package.json

    "dependencies": {
        "@babel/compat-data": "7.8.0",
        ...
    }

npm install

ng build --prod

1
ทำงานได้อย่างสมบูรณ์แบบสำหรับฉัน
Ahsan Alii

อย่าลืมเรียกใช้npm iหลังจากเพิ่มการอ้างอิง
Stack Underflow

2

ป้อนคำอธิบายรูปภาพที่นี่

มันใช้งานได้สำหรับฉัน

ขั้นตอนที่ 1: เพิ่มใน devDependencies ของคุณ: " @ babel / compat-data": "7.8.0 "

ขั้นตอนที่ 2: เรียกใช้ - ติดตั้ง npm

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.