diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index e7227b2..9c91b8b 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -19,6 +19,20 @@ jobs: - name: Optimize map uses: thecodingmachine/map-optimizer-action@master + - uses: actions/setup-node@v2 + with: + node-version: '14.x' + registry-url: 'https://registry.npmjs.org' + + - name: "Install dependencies" + run: npm install + + - name: "Build scripts" + run: npm run build + + - name: "Move scripts" + run: mv dist/* . + - name: Bash run: | ls -al diff --git a/src/index.ts b/src/index.ts index cdb0c1e..64214a2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,7 @@ /// +// You can write your WorkAdventure script here, if any. +// The "WA" global object is available from anywhere. + console.log('Script started successfully'); WA.openCoWebSite('https://workadventu.re'); diff --git a/webpack.prod.js b/webpack.prod.js index b5695cc..e142e19 100644 --- a/webpack.prod.js +++ b/webpack.prod.js @@ -1,4 +1,4 @@ -const merge = require('webpack-merge'); +const { merge } = require('webpack-merge'); const common = require('./webpack.config.js'); module.exports = merge(common, {