cc-core-cli 1.0.77 → 1.0.79

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,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-core-cli",
3
- "version": "1.0.77",
3
+ "version": "1.0.79",
4
4
  "description": "Command Line Interface tool for generating project templates for the (Your Platform's Name) platform.",
5
5
  "main": "bin/index.js",
6
6
  "scripts": {
@@ -5,9 +5,8 @@ WORKDIR /app
5
5
 
6
6
  COPY package.json .
7
7
  COPY .npmrc .
8
- RUN npm install --production
9
-
10
8
  COPY . .
9
+ RUN npm install --production
11
10
 
12
11
  RUN npm run build
13
12
  CMD ["npm", "run", "production"]
@@ -6,6 +6,7 @@
6
6
  "scripts": {
7
7
  "start:dev": "cp .env.develop .env && NODE_OPTIONS='-r @newrelic/next' node index",
8
8
  "build": "next build",
9
+ "postinstall": "node post-install.js",
9
10
  "production": "NODE_OPTIONS='-r @newrelic/next' node index",
10
11
  "analyze": "cross-env ANALYZE=true next build",
11
12
  "analyze:server": "cross-env BUNDLE_ANALYZE=server next build",