Browse Source

Fix build

Chocobozzz 9 months ago
parent
commit
c3030e944a

+ 1 - 1
client/.eslintrc.json

@@ -3,7 +3,7 @@
   "ignorePatterns": [
     "projects/**/*",
     "node_modules/",
-    "src/standalone/player/dist"
+    "src/standalone/embed-player-api/dist"
   ],
   "overrides": [
     {

+ 2 - 2
client/.gitignore

@@ -12,5 +12,5 @@
 /e2e/local.log
 /e2e/browserstack.err
 /e2e/screenshots
-/src/standalone/player/build
-/src/standalone/player/dist
+/src/standalone/embed-player-api/build
+/src/standalone/embed-player-api/dist

+ 1 - 1
client/webpack/webpack.video-embed.js

@@ -10,7 +10,7 @@ module.exports = function () {
   const configuration = {
     entry: {
       'video-embed': './src/standalone/videos/embed.ts',
-      'player': './src/standalone/player/player.ts',
+      'player': './src/standalone/embed-player-api/player.ts',
       'test-embed': './src/standalone/videos/test-embed.ts'
     },
 

+ 1 - 1
scripts/release-embed-api.sh

@@ -2,7 +2,7 @@
 
 set -eu
 
-cd client/src/standalone/player
+cd client/src/standalone/embed-player-api
 
 rm -rf dist build && tsc -p . && ../../../node_modules/.bin/webpack --config ./webpack.config.js
 

+ 1 - 1
support/doc/development/lib.md

@@ -5,7 +5,7 @@
 ### Build & Publish
 
 ```
-cd client/src/standalone/player/
+cd client/src/standalone/embed-player-api/
 npm run build
 npm publish --access=public
 ```

+ 5 - 3
support/doc/development/release.md

@@ -28,9 +28,11 @@ NODE_APP_INSTANCE=6 NODE_ENV=test node dist/server --benchmark-startup
 
 ## @peertube/embed-api
 
+At the root of PeerTube:
+
 ```
-cd client/src/standalone/player
+cd client/src/standalone/embed-player-api
 npm version patch
-npm run build
-npm publish --access=public
+cd ../../../../
+npm run release-embed-api
 ```