-8
.idea/jsLibraryMappings.xml
-8
.idea/jsLibraryMappings.xml
···
1
-
<?xml version="1.0" encoding="UTF-8"?>
2
-
<project version="4">
3
-
<component name="JavaScriptLibraryMappings">
4
-
<file url="file://$PROJECT_DIR$/backend" libraries="{clippr/backend/node_modules}" />
5
-
<file url="file://$PROJECT_DIR$/frontend" libraries="{clippr/frontend/node_modules}" />
6
-
<file url="PROJECT" libraries="{clippr/backend/node_modules, clippr/frontend/node_modules}" />
7
-
</component>
8
-
</project>
+2
-5
.tangled/workflows/build_backend.yaml
+2
-5
.tangled/workflows/build_backend.yaml
···
8
8
- nodejs
9
9
10
10
steps:
11
-
- name: "Get directory layout"
12
-
command: "ls -alh"
13
-
14
11
- name: "Move to backend folder"
15
-
command: "cd backend"
12
+
command: "cd /tangled/workspace/backend"
16
13
17
14
- name: "Install dependencies"
18
-
command: "npm install"
15
+
command: "npm install backend/package.json"
19
16
environment:
20
17
NODE_ENV: "development"
21
18
CI: true
+2
-5
.tangled/workflows/build_frontend.yaml
+2
-5
.tangled/workflows/build_frontend.yaml
···
8
8
- nodejs
9
9
10
10
steps:
11
-
- name: "Get directory layout"
12
-
command: "ls -alh"
13
-
14
11
- name: "Move to frontend folder"
15
-
command: "cd frontend"
12
+
command: "cd /tangled/workspace/frontend"
16
13
17
14
- name: "Install dependencies"
18
-
command: "npm install"
15
+
command: "npm install frontend/package.json"
19
16
environment:
20
17
NODE_ENV: "development"
21
18
CI: true
+2
-5
.tangled/workflows/build_lexicons.yaml
+2
-5
.tangled/workflows/build_lexicons.yaml
···
8
8
- nodejs
9
9
10
10
steps:
11
-
- name: "Get directory layout"
12
-
command: "ls -alh"
13
-
14
11
- name: "Move to lexicons folder"
15
-
command: "cd lexicons"
12
+
command: "cd /tangled/workspace/lexicons"
16
13
17
14
- name: "Install dependencies"
18
-
command: "npm install"
15
+
command: "npm install lexicons/package.json"
19
16
environment:
20
17
NODE_ENV: "development"
21
18
CI: true