@smartsheet-bridge/extensionrc-standard 1.0.0-beta.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +12 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -36,6 +36,17 @@ This package exports a configuration object that can be extended and read by [`@
36
36
 
37
37
  ```js
38
38
  {
39
- specFile: 'extension.json',
39
+ build: {
40
+ src: 'src',
41
+ exclude: [
42
+ '**/.*',
43
+ '**/*.log',
44
+ '**/*.{spec,test}.{js,ts}',
45
+ 'src/**',
46
+ 'node_modules/**',
47
+ '{test,tests,mock,mocks,__test__,__tests__,__mock__,__mocks__}/**',
48
+ ],
49
+ },
50
+ upload: { specFile: 'extension.json' },
40
51
  }
41
52
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@smartsheet-bridge/extensionrc-standard",
3
3
  "description": "Configuration file for a standard JavaScript extension.",
4
- "version": "1.0.0-beta.2",
4
+ "version": "1.0.0",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./lib/config.js",
7
7
  "types": "./lib/config.d.ts",