Skip to content

Commit

Permalink
feat: support nested parameter dot notation and nested messages.
Browse files Browse the repository at this point in the history
Add more helpers

BREAKING: Rename Foundation and Bootstrap names to support versions
  • Loading branch information
Dobromir Hristov committed Oct 10, 2017
1 parent c0d1ddb commit 4db24ee
Show file tree
Hide file tree
Showing 32 changed files with 540 additions and 529 deletions.
18 changes: 8 additions & 10 deletions config/entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const entries = {
},
mixin: {
entry: 'src/message-extractor-mixin.js',
dest: `dist/message-extractor-mixin.js`,
dest: 'dist/message-extractor-mixin.js',
format: 'umd',
env: 'development',
moduleName: moduleName + 'Mixin',
Expand All @@ -61,15 +61,15 @@ const entries = {
dest: `dist/templates/foundation6.min.js`,
format: 'umd',
env: 'production',
moduleName: moduleName + 'FoundationTemplate',
moduleName: moduleName + 'Foundation6Template',
banner
},
bootstrapUmd: {
entry: 'src/templates/bootstrap.vue',
dest: `dist/templates/bootstrap.min.js`,
entry: 'src/templates/bootstrap3.vue',
dest: `dist/templates/bootstrap3.min.js`,
format: 'umd',
env: 'production',
moduleName: moduleName + 'BootstrapTemplate',
moduleName: moduleName + 'Bootstrap3Template',
banner
}
}
Expand All @@ -84,15 +84,13 @@ function genConfig (opts) {
exports: 'named',
plugins: [
vue(),
buble(),
buble({
transforms: { dangerousForOf: true }
}),
node({
module: true
}),
commonjs({
namedExports: { 'node_modules/string-template/index.js': ['template'] } // Default: undefined
})
]
// external: opts.external
}

const replacePluginOptions = { '__VERSION__': pack.version }
Expand Down
45 changes: 0 additions & 45 deletions config/karma.base.conf.js

This file was deleted.

17 changes: 0 additions & 17 deletions config/karma.cover.conf.js

This file was deleted.

97 changes: 0 additions & 97 deletions config/karma.sauce.conf.js

This file was deleted.

9 changes: 0 additions & 9 deletions config/karma.unit.conf.js

This file was deleted.

58 changes: 0 additions & 58 deletions config/nightwatch.conf.js

This file was deleted.

4 changes: 2 additions & 2 deletions config/webpack.dev.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const webpack = require('webpack')
const HtmlWebpackPlugin = require('html-webpack-plugin')

module.exports = {
entry: './test/dev-app.js',
entry: './test/dev/dev-app.js',
output: {
path: path.resolve(__dirname, '/test/unit'),
filename: 'tests.js',
Expand All @@ -29,7 +29,7 @@ module.exports = {
plugins: [
new HtmlWebpackPlugin({
title: 'My App',
template: './test/dev-index.html'
template: './test/dev/dev-index.html'
}),
new webpack.DefinePlugin({
'process.env': {
Expand Down
Empty file removed decls/.gitkeep
Empty file.
Loading

0 comments on commit 4db24ee

Please sign in to comment.