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

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @smartsheet-bridge/extensionrc-standard
2
2
 
3
- Shareable configuration file for standard JavaScript and TypeScript extensions using Bridge by Smartsheet tooling.
3
+ Shareable configuration file for standard JavaScript and TypeScript extensions using Bridge by Smartsheet tooling.
4
4
 
5
5
  _This configuration is installed by default with [@smartsheet-bridge/extension-scripts](https://www.npmjs.com/package/@smartsheet-bridge/extension-scripts)._
6
6
 
@@ -10,7 +10,7 @@ _This configuration is installed by default with [@smartsheet-bridge/extension-s
10
10
 
11
11
  ## Why do I need this?
12
12
 
13
- This sharable configuration file defines a basic config for [@smartsheet-bridge/extension-scripts](https://www.npmjs.com/package/@smartsheet-bridge/extension-scripts).
13
+ This sharable configuration file defines a basic config for [@smartsheet-bridge/extension-scripts](https://www.npmjs.com/package/@smartsheet-bridge/extension-scripts).
14
14
 
15
15
  ## How do I use this?
16
16
 
@@ -37,12 +37,5 @@ This package exports a configuration object that can be extended and read by [`@
37
37
  ```js
38
38
  {
39
39
  specFile: 'extension.json',
40
- exclude: [
41
- '**/.*',
42
- '**/*.log',
43
- '**/node_modules/**',
44
- '**/{test,tests,mock,mocks,__test__,__tests__,__mock__,__mocks__}/**',
45
- '**/*.{spec,test}.{js,ts}',
46
- ],
47
40
  }
48
41
  ```
@@ -1 +1 @@
1
- {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAC;AAEtE,QAAA,MAAM,aAAa,EAAE,SAUpB,CAAC;AAEF,SAAS,aAAa,CAAC"}
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAC;AAEtE,QAAA,MAAM,aAAa,EAAE,SAapB,CAAC;AAEF,SAAS,aAAa,CAAC"}
package/lib/config.js CHANGED
@@ -1,14 +1,17 @@
1
1
  "use strict";
2
2
  const Configuration = {
3
- specFile: 'extension.json',
4
- exclude: [
5
- '**/.*',
6
- '**/*.log',
7
- '**/*.{spec,test}.{js,ts}',
8
- 'src/**',
9
- 'node_modules/**',
10
- '{test,tests,mock,mocks,__test__,__tests__,__mock__,__mocks__}/**',
11
- ],
3
+ build: {
4
+ src: 'src',
5
+ exclude: [
6
+ '**/.*',
7
+ '**/*.log',
8
+ '**/*.{spec,test}.{js,ts}',
9
+ 'src/**',
10
+ 'node_modules/**',
11
+ '{test,tests,mock,mocks,__test__,__tests__,__mock__,__mocks__}/**',
12
+ ],
13
+ },
14
+ upload: { specFile: 'extension.json' },
12
15
  };
13
16
  module.exports = Configuration;
14
17
  //# sourceMappingURL=config.js.map
package/lib/config.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":";AAEA,MAAM,aAAa,GAAc;IAC/B,QAAQ,EAAE,gBAAgB;IAC1B,OAAO,EAAE;QACP,OAAO;QACP,UAAU;QACV,0BAA0B;QAC1B,QAAQ;QACR,iBAAiB;QACjB,kEAAkE;KACnE;CACF,CAAC;AAEF,iBAAS,aAAa,CAAC"}
1
+ {"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":";AAEA,MAAM,aAAa,GAAc;IAC/B,KAAK,EAAE;QACL,GAAG,EAAE,KAAK;QACV,OAAO,EAAE;YACP,OAAO;YACP,UAAU;YACV,0BAA0B;YAC1B,QAAQ;YACR,iBAAiB;YACjB,kEAAkE;SACnE;KACF;IACD,MAAM,EAAE,EAAE,QAAQ,EAAE,gBAAgB,EAAE;CACvC,CAAC;AAEF,iBAAS,aAAa,CAAC"}
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": "0.1.0",
4
+ "version": "1.0.0-beta.2",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./lib/config.js",
7
7
  "types": "./lib/config.d.ts",