Skip to content
This repository was archived by the owner on Jan 31, 2023. It is now read-only.

Commit f2df72c

Browse files
authored
Merge pull request #576 from smartprocure/feature/misc-fixes
Add exports field to package.json
2 parents 41f0c71 + 0510136 commit f2df72c

File tree

3 files changed

+15
-63
lines changed

3 files changed

+15
-63
lines changed

.gitignore

Lines changed: 4 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,15 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
8-
# Runtime data
9-
pids
10-
*.pid
11-
*.seed
12-
*.pid.lock
13-
14-
# Directory for instrumented libs generated by jscoverage/JSCover
15-
lib-cov
16-
17-
# Coverage directory used by tools like istanbul
18-
coverage
19-
20-
# nyc test coverage
21-
.nyc_output
22-
23-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24-
.grunt
25-
26-
# Bower dependency directory (https://bower.io/)
27-
bower_components
28-
29-
# node-waf configuration
30-
.lock-wscript
31-
32-
# Compiled binary addons (http://nodejs.org/api/addons.html)
33-
build/Release
34-
351
# Dependency directories
362
node_modules/
37-
jspm_packages/
383

39-
# Typescript v1 declaration files
40-
typings/
41-
42-
# Optional npm cache directory
43-
.npm
44-
45-
# Optional eslint cache
46-
.eslintcache
47-
48-
# Optional REPL history
49-
.node_repl_history
50-
51-
# Output of 'npm pack'
52-
*.tgz
53-
54-
# Yarn Integrity file
55-
.yarn-integrity
56-
57-
# dotenv environment variables file
58-
.env
59-
60-
# ignore distribution folder
4+
# Build output
615
dist/*
626

63-
# ignore storybook related folders
64-
storybook-static/
65-
7+
# Duti stuff
668
test-results.json
679
lint-results.json
6810

69-
# yarn stuff
70-
# see https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
11+
# Yarn stuff: https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
12+
.pnp.*
7113
.yarn/*
7214
!.yarn/patches
7315
!.yarn/plugins

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 2.54.11
2+
3+
- Add exports field to package.json
4+
15
# 2.54.10
26

37
- Bump contexture-client

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
{
22
"name": "contexture-react",
3-
"version": "2.54.10",
3+
"version": "2.54.11",
44
"description": "React components for building contexture interfaces",
55
"type": "module",
66
"main": "dist/esm/index.js",
7+
"exports": {
8+
".": {
9+
"import": "./dist/esm/index.js",
10+
"require": "./dist/cjs/index.js"
11+
}
12+
},
713
"files": [
814
"./dist"
915
],

0 commit comments

Comments
 (0)