Skip to content

Commit 5f731cd

Browse files
committedJul 5, 2019
Build examples in CI
1 parent bd2fe3a commit 5f731cd

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed
 

‎.circleci/config.yml

+4
Original file line numberDiff line numberDiff line change
@@ -236,3 +236,7 @@ workflows:
236236
filters:
237237
branches:
238238
only: master
239+
prismatest-examples:
240+
jobs:
241+
- build:
242+
location: ./examples

‎examples/package.json

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
{
2-
"name": "PrismatestJS-examples",
2+
"name": "@mojotech/prismatest-examples",
33
"version": "1.0.0",
44
"description": "Examples of using the PrismatestJS library",
5-
"main": "dist/index.js",
6-
"types": "dist/index.d.ts",
5+
"main": "",
6+
"types": "",
77
"author": "Mojotech",
88
"license": "MIT",
99
"devDependencies": {
10-
"@types/enzyme": "^3.9.3",
1110
"@types/jest": "^24.0.13",
1211
"@types/react": "^16.8.19",
1312
"@types/react-dom": "^16.8.4",
@@ -22,9 +21,8 @@
2221
"scripts": {
2322
"ts": "tsc --listFiles -w --noEmit",
2423
"format": "prettier --write *.ts",
24+
"build": "echo 'No build!'",
25+
"clean": "echo 'No clean!'",
2526
"test": "jest"
26-
},
27-
"files": [
28-
"./dist"
29-
]
27+
}
3028
}

0 commit comments

Comments
 (0)
Please sign in to comment.