Questions tagged [module-build]
23 questions
0
votes
0 answers
When html file is created, its creating multiple head tag in webpack bundle
Webpack.config.js
const path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const…

KUNAL TIWARI
- 37
- 6
0
votes
1 answer
How to make node module by typescript module
How to build typescript module to javascript module
this is my tsconfigFile
{
"compilerOptions": {
"target": "ES5",
"module": "CommonJS",
"declaration": true,
"outDir": "./dist",
"strict": true,
"moduleResolution":…

GomDeveloper
- 1
- 1
0
votes
1 answer
Webpack 2.7.0 LoaderRunnerError: Module '*\node_modules\less\index.js' is not a loader (must have normal or pitch function)
I have this > 5 years old Angular 1.5.8 project developed by someone else, using webpack 2.7.0. It currently fails building. The error seems to be encountered at the very first .css file, which happens to be angular-material.css:
[96]…

tao
- 82,996
- 16
- 114
- 150
0
votes
0 answers
Different versions of the same dll in one application c#
We are currently migrating legacy application from VS2003 .Net 1.1 Windows application to ASP.NET MVC Web Application.
Client is going to move from Windows 7 to Windows 10 OS for all system.
Temporarily compile / run legacy windows application from…

Thulasiram
- 8,432
- 8
- 46
- 54
0
votes
1 answer
What is the right "chmod" Perl module files on Windows?
I wrote a Perl module MySQL::Admin.
No problems with the installer (Module::Build). If I try to install this on Windows I get the message:
saveSettings
Permission denied
File:…

Dirk Lindner
- 7
- 1
0
votes
1 answer
How to run perl test without t/*.t structure(t/sub_folder/*.t)
I try to gather my code and manage my perl project via Makefile.PL or Build.PL, everything goes well and I got the correct test result with TAP format. But I'd like to make some sub folders under t/ folder to gather different test file, then I found…

zhangyuting
- 68
- 1
- 5
0
votes
1 answer
Module::Build Build issue
What is the output of building a perl module using Module::build.
I don't know how to make reuse of that. help me to resolve this issue (Again I got the the same code inside blib->lib directory.

sakthyit
- 1
0
votes
3 answers
How do I ensure that old shared content is removed when using Module::Build's share_dir option?
I'm using Module::Build's share_dir option to install read-only supplementary content when users install my Perl module.
How do I ensure that the old content added by previous versions of my module is deleted when a new version of my module is…

Anirvan
- 6,214
- 5
- 39
- 53