Questions tagged [externals]
84 questions
1
vote
1 answer
Keep PHP classes (Zend, PEAR) in Subversion?
I have two projects in the same Subversion repository. They both use some standard code/classes (Zend/PEAR/phpMyAdmin etc) for various things. The repo is organized like this:
\shared\trunk - stuff used by both projects
\main\project1\trunk\shared…

elaxsj
- 474
- 1
- 5
- 16
1
vote
3 answers
How do I update all svn:externals references after a server migration?
I migrated an SVN server today and ran into an issue. I have a repo that has an svn:externals property on a trunk subfolder. This folder has been branched a bunch of times and now this svn:externals reference needs updated on every single branch to…

Michael Haren
- 105,752
- 40
- 168
- 205
1
vote
1 answer
Exclude files from bundle (Webpack)
I have the following project structure:
-dist
└ a.js (this is a bundled file)
-src
└ b.js
File a.js
function foo (name) {
console.log(name);
}
module.exports = foo;
File b.js
const log = require('../dist/a.js');
log('stackoverflow');
I…

Guillermo Puente Sandoval
- 23
- 1
- 5
1
vote
1 answer
How to write webpack external for module subdirectory
I am trying to add all files from module subdirectory to Webpack externals.
Especially data of react-intl locale files.
I am tryng to specify a path to the locale files with a regexp in a webpack config, but it does't work:
module.exports = {
…

lavor
- 1,787
- 1
- 14
- 21
1
vote
1 answer
svn: Is there a way to avoid extraneous re-loading of externals?
When I do an svn update, it reloads all the externals, even though I've given them all an explicit revision in svn:externals, and I haven't modified this property or the files in question.
Is there a way to stop this from happening?

Jason S
- 184,598
- 164
- 608
- 970
1
vote
1 answer
React standalone bundle without react library inside
I have created standalone bundle which I include in React App. The App itself does not anything know about Extension Bundle (next XB) it load, but the XB does know about App and libraries it use inside. How to make App share library packages it…

Thomas Anderson
- 511
- 1
- 5
- 14
1
vote
0 answers
Does Grunt offer some "externals" option similar to what webpack provides?
We know that using webpack sometimes we do not want to include a package code inline in our output file(s) as it is assumed that it will be available on the Browser globally at runtime.
This is done because it allows us to avoid bundling all of our…

Faisal Mq
- 5,036
- 4
- 35
- 39
1
vote
2 answers
Weird TCL quirk
So I am very new and inexperienced to the ways of TCL programming. I wrote a script that calls a proc written by someone else, first removing the output file. It then does some additional logic I wrote.
I moved the logic into a second proc and…

Jason R. Mick
- 5,177
- 4
- 40
- 69
1
vote
0 answers
ReactInputSelection import from precompiled reactjs
I want to reduce the size of bundlejs. But when I use precompiled reactjs, I met some problems.
externals: {
'jquery': 'jQuery',
'jquery-ui': 'jQueryUI',
'react': 'React',
'react/addons': 'React.addons',
…

WhatAKitty
- 338
- 1
- 5
- 17
1
vote
0 answers
Pre-commit hook that checks svn:externals for tags directory
I'm trying to check my externals through an SVN Pre-commit hook. The svn:external contains an shared library through multiple projects. On the Pre-commit hook, I want to check if the external is pointing to a Tag directory and not to the trunk or a…

Roel Balink
- 417
- 1
- 4
- 19
1
vote
2 answers
Including links to external resources in Visual Studio 2010 Web project
I have a ASP.NET project which relies upon the FreeImage .NET wrapper. This is loaded using a reference to a external directory. The wrapper relies upon the FreeImage.dll being present to work (clearly).
How do I get Visual Studio to include a…

Gordon Thompson
- 4,764
- 8
- 48
- 62
1
vote
1 answer
Error setting property 'externals' message on SVN Commit
I've added svn:externals for a project in subversion, hosted on github. But when I attempt to commit the project I get the following message:
Error Commit failed (details follow):
Error At least one property change failed; repository is…

Jérémy Quentin
- 21
- 4
1
vote
1 answer
Integrating Livecode native apps with Python apps via network sockets on mobile
As an alternative to having to create an “external” in c/c++/objc to a new Livecode application, I have developed instead a Python network socket app that communicates with it via sockets. The reason for this is that I needed to use some functions…

user2988903
- 11
- 2
1
vote
1 answer
Is the mergAccessory ios external intended only for printers?
In the documentation we have the following commands.
command mergAccessoryRead pNameAndProtocol,pLength,pCallcackHandler
command mergAccessoryWrite pNameAndProtocol,pData,pCallcackHandler
Do they only work with printers or can they be used…

JunM
- 7,040
- 7
- 37
- 58
1
vote
0 answers
Subversion Externals Follow Symlink
Is there a way to use a symlink with the svn:externals property?
I've a project running on my webserver (under unix) which has some folders that are actually symlink to other folders.
When I add the symlink to the repository it gets converted to a…

Easly
- 334
- 2
- 11