startupjs 0.40.15 → 0.40.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "startupjs",
3
3
  "type": "module",
4
- "version": "0.40.15",
4
+ "version": "0.40.16",
5
5
  "engines": {
6
6
  "node": ">= 14"
7
7
  },
@@ -25,5 +25,5 @@
25
25
  "babel-preset-startupjs": "^0.40.9",
26
26
  "react-native-web": "^0.14.3"
27
27
  },
28
- "gitHead": "39bf6b32f295a12394989edddc2a5972779b2fcf"
28
+ "gitHead": "65a7550f419bd9bdd873cfa97ef821fbb09c50de"
29
29
  }
@@ -15,7 +15,7 @@ RUN \
15
15
  # optionally use a custom npm token (if defined above)
16
16
  echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc && \
17
17
  # install build tools
18
- apk add --no-cache make gcc g++ python git && \
18
+ apk add --no-cache make gcc g++ python3 git && \
19
19
  # ffmpeg is required at runtime for video & audio conversion libraries
20
20
  apk add --no-cache ffmpeg && \
21
21
  # install dependencies
@@ -25,7 +25,7 @@ RUN \
25
25
  # cleanup yarn
26
26
  yarn cache clean && \
27
27
  # cleanup build tools
28
- apk del make gcc g++ python git
28
+ apk del make gcc g++ python3 git
29
29
 
30
30
  CMD yarn start-production
31
31