Skip to content

Commit e042fec

Browse files
Installer: Exclude Standalone Updater
1 parent 0bd5374 commit e042fec

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

build-config.js

+14-13
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,20 @@ module.exports = {
5959
},
6060
copy: {
6161
src: [
62-
'**/!(*.js|*.jsx|*.less)', // Everything except .js/.jsx and .less files
63-
'!{build,build/**}', // Ignore build/ and contents
64-
'widgets/less/*.less', // LESS libraries used in runtime styles
65-
'widgets/**/styles/*.less', // All the widgets' runtime .less files
66-
'inc/installer/js/*js', // Include Installer JS.
67-
'!widgets/**/styles/*.css', // Don't copy any .css files compiled from runtime .less files
68-
'!{node_modules,node_modules/**}', // Ignore node_modules/ and contents
69-
'!{tmp,tmp/**}', // Ignore dist/ and contents
70-
'!siteorigin-panels.php', // Not the base plugin file. It is copied by the 'version' task.
71-
'!package.json', // Ignore the package.json file..
72-
'!readme.txt', // Not the readme.txt file. It is copied by the 'version' task.
73-
'!readme.md', // Ignore the readme.md file. It is for the github repo.
74-
'!{js/siteorigin-panels,js/siteorigin-panels/**}'
62+
'**/!(*.js|*.jsx|*.less)', // Everything except .js/.jsx and .less files
63+
'!{build,build/**}', // Ignore build/ and contents
64+
'widgets/less/*.less', // LESS libraries used in runtime styles
65+
'widgets/**/styles/*.less', // All the widgets' runtime .less files
66+
'inc/installer/js/*js', // Include Installer JS.
67+
'!widgets/**/styles/*.css', // Don't copy any .css files compiled from runtime .less files
68+
'!{node_modules,node_modules/**}', // Ignore node_modules/ and contents
69+
'!{tmp,tmp/**}', // Ignore dist/ and contents
70+
'!siteorigin-panels.php', // Not the base plugin file. It is copied by the 'version' task.
71+
'!package.json', // Ignore the package.json file..
72+
'!readme.txt', // Not the readme.txt file. It is copied by the 'version' task.
73+
'!readme.md', // Ignore the readme.md file. It is for the github repo.
74+
'!{js/siteorigin-panels,js/siteorigin-panels/**}',
75+
'!inc/installer/inc/github-plugin-updater.php', // Exclude Installer Standalone Updater.
7576
]
7677
},
7778
i18n: {

0 commit comments

Comments
 (0)