Can you give me the process at the beginning because i couldn't solve the problem. What should I delete and what should I create?
I deleted yarn.lock
file did yarn
after adding devDependencies
After that I added gulpfile and bundles.json in root folder ( where we have package.json file)
bundles.json
{
"styles": [
],
"scripts": []
}
After we publish please try and run
abp clean
& dotnet restore
or build
or run
then it will work.
best,
After we publish please try and run
abp clean
& dotnet restore
or build
or run
then it will work.
best,
Hello icoretchi ,
This issue will be fixed in next release.
Your ticket will be refunded.
Thank you for reporting the issue.
Regards, Anjali
Hello okains,
This issue will be fixed in next release.
Your ticket will be refunded.
Thank you for reporting the issue.
Regards, Anjali
I didn't get this error, how can I reproduce this? can you please try this once
npm cache clean --force
npm install --global gulp-cli
Please refer this link as well https://github.com/oclif/oclif/issues/132
Able to reproduce working on it. Will get back to you asap.
Hello cxp920,
I have tried to do so by following below documentation at my end and its working fine. Could please check once the documentation and also the video link. https://docs.abp.io/en/abp/latest/Module-Development-Basics https://www.youtube.com/watch?v=WVKHfYxezNo
please let me know if it helps you
Thank you, Anjali
We are creating gulfile and we can add cleanups or whatever we want to execute I have done it before I will share that with you. 1 package.json
"devDependencies": {
"gulp": "^4.0.1",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-less": "^5.0.0",
"gulp-postcss": "^9.0.1",
"gulp-uglify": "^3.0.2",
}
after ading this in devDependencies delete yarn.lock
file and do yarn
2 gulpfile gulpfile.js shared 3 bundles.json
{
"styles": [
{
"output": "src/assets/metronic/themes/default/css/style.bundle.min.css",
"input": [
"src/assets/metronic/themes/default/css/style.bundle.css"
]
} // we can add input outputs like this the operation we wrote in gulpfile.js
],
"scripts": []
}