Skip to content

Commit 41f6336

Browse files
committed
Merge branch 'release/0.6.2'
2 parents 4d98ddb + ef350cb commit 41f6336

File tree

98 files changed

+17376
-9906
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+17376
-9906
lines changed

.dockerignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
npm-debug.log
3+
dist

.eslintrc.js

+22-34
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,23 @@
11
module.exports = {
2-
"parser": "babel-eslint",
3-
"plugins": [
4-
"flowtype"
5-
],
6-
"env": {
7-
"browser": true,
8-
"es6": true
9-
},
10-
"extends": "plugin:flowtype/recommended",
11-
"parserOptions": {
12-
"ecmaVersion": 2017,
13-
"sourceType": "module"
14-
},
15-
"rules": {
16-
"indent": [
17-
"error",
18-
"tab",
19-
{ "SwitchCase": 1 }
20-
],
21-
"quotes": [
22-
"error",
23-
"single"
24-
],
25-
"semi": [
26-
"error",
27-
"always"
28-
]
29-
},
30-
"settings": {
31-
"flowtype": {
32-
"onlyFilesWithFlowAnnotation": false
33-
}
34-
}
35-
};
2+
parser: 'babel-eslint',
3+
plugins: ['flowtype'],
4+
env: {
5+
browser: true,
6+
es6: true,
7+
},
8+
extends: 'plugin:flowtype/recommended',
9+
parserOptions: {
10+
ecmaVersion: 2017,
11+
sourceType: 'module',
12+
},
13+
rules: {
14+
indent: ['error', 2, { SwitchCase: 1 }],
15+
quotes: ['error', 'double', { avoidEscape: true }],
16+
semi: ['error', 'always'],
17+
},
18+
settings: {
19+
flowtype: {
20+
onlyFilesWithFlowAnnotation: false,
21+
},
22+
},
23+
};

.prettierrc.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// prettier.config.js or .prettierrc.js
2+
module.exports = {
3+
tabWidth: 2,
4+
singleQuote: false,
5+
};

Dockerfile

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
FROM ubuntu:focal
2+
3+
# Set a directory for the app
4+
WORKDIR /app
5+
6+
# Update APT
7+
RUN apt-get update
8+
9+
# Install curl
10+
RUN apt-get install -y curl
11+
12+
# Install node.js v16
13+
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
14+
RUN apt-get install -y nodejs
15+
16+
# Install build-essentials (required for certain npm packages)
17+
RUN apt-get install -y build-essential
18+
19+
# Install grunt, jsonlint and jshint
20+
RUN npm install -g grunt
21+
22+
# Install latest stable Ruby
23+
RUN curl -sSL https://rvm.io/mpapis.asc | gpg --import
24+
RUN curl -sSL https://rvm.io/pkuczynski.asc | gpg --import
25+
RUN curl -sSL https://get.rvm.io | bash -s stable --ruby
26+
27+
# Update Gem
28+
RUN bash -c "source /etc/profile.d/rvm.sh && gem update --system"
29+
30+
# Install compass
31+
RUN bash -c "source /etc/profile.d/rvm.sh && gem install compass"
32+
33+
# Copy over package*.json files
34+
COPY package*.json ./
35+
36+
# Install our NPM dependencies
37+
RUN npm install --legacy-peer-deps
38+
39+
# Preserve package-lock.json
40+
RUN cp package-lock.json package-lock.json.new
41+
42+
# Copy all the files to the container
43+
COPY . .
44+
45+
# Restore package-lock.json
46+
RUN cp package-lock.json.new package-lock.json
47+
48+
# Finally, run the build script on run
49+
ENV grunt_command default
50+
CMD ["bash", "-c", "source /etc/profile.d/rvm.sh && grunt ${grunt_command}"]

0 commit comments

Comments
 (0)