Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Move elm pkg code to repo root #1

Merged
merged 2 commits into from
Apr 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

- restore_cache:
keys:
- deps-{{ checksum "elm/package.json" }}
- deps-{{ checksum "package.json" }}
- deps-

- run:
Expand All @@ -18,7 +18,7 @@ jobs:

- run:
name: Install dependencies
working_directory: elm
working_directory: .
command: |
npm install

Expand All @@ -36,28 +36,28 @@ jobs:

- save_cache:
paths:
- elm/node_modules
key: deps-{{ checksum "elm/package.json" }}
- node_modules
key: deps-{{ checksum "package.json" }}

- run:
name: Run static code analysis
working_directory: elm
working_directory: .
command: |
elm-analyse

- run:
name: Run tests
working_directory: elm
working_directory: .
command: |
mkdir -p test-reports
/tmp/sysconfcpus/bin/sysconfcpus -n 2 npm test

- store_artifacts:
path: elm/test-reports/
path: test-reports/
destination: tr1

- store_test_results:
path: elm/test-reports/
path: test-reports/

workflows:
version: 2
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
elm-stuff
node_modules
documentation.json
package-lock.json

File renamed without changes.
2 changes: 1 addition & 1 deletion elm/elm-package.json → elm-package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0",
"version": "1.0.1",
"summary": "Koivu",
"repository": "https://github.com/allo-media/koivu.git",
"license": "MIT",
Expand Down
4 changes: 0 additions & 4 deletions elm/.gitignore

This file was deleted.

38 changes: 0 additions & 38 deletions elm/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion example/elm-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"source-directories": [
"src",
"../elm/src"
"../src"
],
"exposed-modules": [],
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions elm/package.json → package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "koivu-elm",
"version": "0.0.1",
"description": "Commands for the koivu Elm package",
"version": "1.0.0",
"description": "Commands for the koivu Elm package; do not publish!",
"private": true,
"scripts": {
"install": "elm package install -y",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.