Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

325
Views
gruntjs - Uncaught SyntaxError: Identifier has already been declared

I am using grunt to uglify my Js code, but when I test my code in the browser I get:

Uncaught SyntaxError: Identifier has already been declared

Here is an example of the test I di: files:

testA.js-

export const myData = {
  a: "hello",
  b: "Me",
};

testB.js-

import { myData } from "./testA.js";

const doSomething =()=>{
    console.log(myData);
}

doSomething();

uglify file:

test.min.js-

const myData = { a: "hello", b: "Me" };
import { myData } from "./testA.js";
const doSomething = () => {
    console.log(myData);
  },
  myData = (doSomething(), { a: "hello", b: "Me" });
import { myData } from "./testA.js";
const doSomething = () => {
  console.log(myData);
};
doSomething();
export { myData, myData };

As you can see myData is exported twice but the error line starts at line 2. Is there a way to prevent grunt from creating duplicate identifiers to fix the problem?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!