View webpack.config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { join, relative, resolve, sep } = require("path"); | |
const webpack = require("webpack"); | |
const { CleanWebpackPlugin } = require("clean-webpack-plugin"); | |
const CopyWebpackPlugin = require("copy-webpack-plugin"); | |
const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer"); | |
const TerserPlugin = require("terser-webpack-plugin"); | |
const VueLoaderPlugin = require("vue-loader/lib/plugin"); | |
const NsVueTemplateCompiler = require("nativescript-vue-template-compiler"); |
View gist:3695d91874829377e64e1f109d5fbd2b
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set +e | |
# Update gazebo repository | |
wget http://packages.osrfoundation.org/gazebo.key -O - | apt-key add - | |
sudo sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable xenial main" > /etc/apt/sources.list.d/gazebo-stable.list' | |
sudo apt-get update | |
# install required packages | |
sudo apt-get install git docker.io gazebo7 |
View gist:c9dcb54234b7e112f08a3f39f2509ca1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set +e | |
# Update gazebo repository | |
wget http://packages.osrfoundation.org/gazebo.key -O - | apt-key add - | |
sudo sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable xenial main" > /etc/apt/sources.list.d/gazebo-stable.list' | |
sudo apt-get update | |
# install required packages | |
sudo apt-get install git docker.io gazebo7 |