Joas Schilling
ad3bf1df89
chore: Switch from master to main branch
Signed-off-by: Joas Schilling <coding@schilljs.com>
2 years ago
Joas Schilling
1f720a3bd6
fix(docs): Add readthedocs config to try fixing the build
Signed-off-by: Joas Schilling <coding@schilljs.com>
2 years ago
Joas Schilling
5a124f3cfd
chore(packaging): Ship dependencies lock files
Signed-off-by: Joas Schilling <coding@schilljs.com>
2 years ago
Joas Schilling
34c6dbf819
fix(release): Exclude .editorconfig from release package
Signed-off-by: Joas Schilling <coding@schilljs.com>
2 years ago
Joas Schilling
1d9cf11441
chore(release): Adjust release exclude list
Signed-off-by: Joas Schilling <coding@schilljs.com>
3 years ago
Marco
062dec3a35
Update makefile
Signed-off-by: Marco <marcoambrosini@icloud.com>
3 years ago
Joas Schilling
59b3c4bcd8
Add a step "production-setup" to produce a release package
Signed-off-by: Joas Schilling <coding@schilljs.com>
3 years ago
Joas Schilling
a32b57adf6
fixpackaging): Exclude webpack.config.js from packaging
Signed-off-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
3 years ago
Joas Schilling
a5a7fff784
fix(packaging): Adjust the exclude list to package the composer autoloader
Signed-off-by: Joas Schilling <coding@schilljs.com>
3 years ago
Joas Schilling
841202de22
Only do classmap-authoritative on release
Signed-off-by: Joas Schilling <coding@schilljs.com>
3 years ago
Joas Schilling
6d4b32ef12
chore(packaging): Remove upcoming recording scripts from release tarball
Signed-off-by: Joas Schilling <coding@schilljs.com>
3 years ago
Joas Schilling
1cdd96a113
Add Mozart to avoid conflict with other JWT apps
Signed-off-by: Joas Schilling <coding@schilljs.com>
3 years ago
Joas Schilling
c142394f0e
Use vendor-bin to separate dev from production dependencies
Signed-off-by: Joas Schilling <coding@schilljs.com>
3 years ago
Joas Schilling
1dad1a8afe
Fix exclude list with vendor src/
Signed-off-by: Joas Schilling <coding@schilljs.com>
3 years ago
Joas Schilling
31f2b590f2
Fix exclude list with new items
Signed-off-by: Joas Schilling <coding@schilljs.com>
3 years ago
Joas Schilling
9ae8281ada
Install composer --no-dev by default
Signed-off-by: Joas Schilling <coding@schilljs.com>
3 years ago
Joas Schilling
f0edd9cf52
Require firebase JWT lib
Signed-off-by: Joas Schilling <coding@schilljs.com>
4 years ago
Joas Schilling
37bacbf375
Adjust packaging exclude list for 24
Signed-off-by: Joas Schilling <coding@schilljs.com>
4 years ago
Joas Schilling
bf9f53771d
Remove version artifact
Signed-off-by: Joas Schilling <coding@schilljs.com>
4 years ago
Joas Schilling
a3f7c24e92
Bump exclude list of packaing and bump version
Signed-off-by: Joas Schilling <coding@schilljs.com>
4 years ago
Joas Schilling
3b9deaae79
Add Psalm
Signed-off-by: Joas Schilling <coding@schilljs.com>
5 years ago
Joas Schilling
4c0f97bb08
Don't update packages on npm-init or dev-setup
Signed-off-by: Joas Schilling <coding@schilljs.com>
5 years ago
Joas Schilling
c83b6b5031
Remove compile checker it should be a github action when enabling it ever again
Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago
Joas Schilling
4009391806
Update the exclude lists
Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago
Joas Schilling
877166cf79
Add PHP CS
Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago
Joas Schilling
cb6b8f851d
Remove more dev files from final package
Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago
Joas Schilling
15b14111ca
Ship map files by default
Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago
Marco Ambrosini
378b298e16
Fix test commands
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
6 years ago
Joas Schilling
2f78215d0b
Cleanup the exclude list
Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago
Joas Schilling
624bedb31a
Remove more files from the release package
Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago
Joas Schilling
5794a151d7
Remove code from bundling webrtc manually
Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago
Joas Schilling
75d49a6dbf
Fully delete js/
Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago
Joas Schilling
b4e237d157
Remove handlebar code
Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago
Joas Schilling
b559bcc479
Remove vue/ because it's empty
Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago
Joas Schilling
dbd5851f9d
Make Make make everything
Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago
Joas Schilling
c65a56b0e3
Fix eslint
Signed-off-by: Joas Schilling <coding@schilljs.com>
6 years ago
Daniel Calviño Sánchez
ab7f97c011
Fix "module.exports" no longer available in WebRTC adapter 7.2.5
Since 7.2.5 the "main" property in the "package.json" of WebRTC adapter
points to an ES6 file which does not provide "module.exports" but
"exports.default". Due to this uses of "var adapter =
require('webrtc-adapter');" now fail, as the properties of the module
are loaded in "adapter.default" instead of in "adapter". To restore the
previous and expected behaviour a Babel plugin is now used to also add
"module.exports" if "exports.default" exists.
As WebRTC adapter still provides an ES5 file an alternative solution
would have been to alias "webrtc-adapter" to that file with
'--transform [ aliasify --global --aliases [ --webrtc-adapter
"webrtc-adapter/dist/adapter_core5.js" ] ]'.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
6 years ago
Joas Schilling
3a3d2e15a2
Remove development files from package
Signed-off-by: Joas Schilling <coding@schilljs.com>
7 years ago
Daniel Calviño Sánchez
8d5504d7d8
Do not rebuild JavaScript files before packing a release
As the JavaScript files are versioned again they should not be rebuilt
before packing a release; otherwise the JavaScript files in the package
could be different than the ones in the version control system.
As the JavaScript files are no longer built it is not needed either to
set up the development environment; however, it is still necessary to
remove the build directory before packaging the release, so this is now
explicitly done.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
7 years ago
Joas Schilling
c6af361e3d
Update the templates when the deps are updated
Signed-off-by: Joas Schilling <coding@schilljs.com>
7 years ago
Daniel Calviño Sánchez
dd19a43ccd
Remove JavaScript test configuration and dependencies
Currently there are no JavaScript unit tests, so the related stuff can
be removed and added later if/when needed.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
7 years ago
Joas Schilling
983e71bd93
Merge make files and remove compiled JS
Signed-off-by: Joas Schilling <coding@schilljs.com>
7 years ago
Daniel Calviño Sánchez
06c160e494
Add make step to bundle the custom SimpleWebRTC
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
7 years ago
Joas Schilling
6cd02c8ede
Remove the compile files from the package
Signed-off-by: Joas Schilling <coding@schilljs.com>
7 years ago
Daniel Calviño Sánchez
970a22f9ce
Extract compilation of Handlebars templates to its own script
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
7 years ago
Daniel Calviño Sánchez
241dda266c
Add Handlebars to the development dependencies
Dependencies declared in "package.json" are installed locally, so the
call to the handlebars script must be updated accordingly.
To ensure that Handlebars is installed before using it the Make step to
compile the templates now depends on the step to setup the development
environment.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
7 years ago
Roeland Jago Douma
403ef12330
Move admin templates to compiled handlebars
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
7 years ago
Morris Jobke
c4a9f654cb
Move transifex config for updated l10n script
See nextcloud/docker-ci#78 for details
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
8 years ago
Joas Schilling
30cd1821bc
Add github special files
Signed-off-by: Joas Schilling <coding@schilljs.com>
9 years ago
Joas Schilling
0407f1c7f3
Update version fix script and upload 1.1.1
Signed-off-by: Joas Schilling <coding@schilljs.com>
9 years ago